diff --git a/src/rougail/output_display/display.py b/src/rougail/output_display/display.py
index 2b3d9ecf..e116b11f 100644
--- a/src/rougail/output_display/display.py
+++ b/src/rougail/output_display/display.py
@@ -277,45 +277,54 @@ class Node:
force_store_value = "force_store_value" in properties
is_default = option.owner.isdefault()
option_path = option.path()
+ default_owner = owners.default
+ true_default = is_default and meta_option.owner.get() == default_owner
while True:
- if values and value in [None, []]:
+ if values and true_default and value in [None, []]:
break
- if is_default and (not meta_config.path() or "." not in meta_config.path()):
- loaded_from = None
- else:
- loaded_from = meta_option.information.get(loaded_from_key, None)
if isinstance(value, list):
value = [self.convert_value(meta_option, val) for val in value]
else:
value = self.convert_value(meta_option, value)
- values.append(
- {
- "value": value,
- "is_default": is_default,
- "loaded_from": loaded_from,
- }
- )
+ if true_default:
+ loaded_from = None
+ else:
+ loaded_from = meta_option.information.get(loaded_from_key, None)
+ if true_default or loaded_from or force_store_value:
+ values.append(
+ {
+ "value": value,
+ "is_default": true_default,
+ "loaded_from": loaded_from,
+ }
+ )
+ if true_default or force_store_value:
+ break
meta_config_path = meta_config.path()
- if (is_default and (not meta_config_path or "." not in meta_config_path)) or force_store_value:
+ if is_default and (not meta_config_path or "." not in meta_config_path):
+ # we are in root metaconfig and we have default value
break
new_meta_config = self.get_metaconfig_with_default_value(meta_config, meta_option)
- if not meta_config:
+ if not new_meta_config:
break
meta_option = new_meta_config.option(option_path, index)
if new_meta_config == meta_config:
+ # we already have current value, so we search default's one
is_default = True
+ true_default = True
value = meta_option.value.default()
else:
is_default = meta_option.owner.isdefault()
try:
value = meta_option.value.get()
except ValueError as err:
- if not isdefault:
+ if not is_default:
meta_option._set_subconfig()
self.errors.append({str(err): meta_option._subconfig})
break
except Exception as err:
break
+ true_default = is_default and meta_option.owner.get() == default_owner
meta_config = new_meta_config
if leader_index is not None:
if len(value) > leader_index:
@@ -348,11 +357,15 @@ class Node:
def get_metaconfig_with_default_value(self, meta_config, option):
default_owner = option.owner.default()
if default_owner == owners.default:
+ if option.owner.get() == default_owner:
+ return None
if self.root_config:
return self.root_config
return self.config
if not self.config_owner_is_path:
while True:
+ if meta_config.type() != 'metaconfig':
+ return None
meta_config = meta_config.parent()
if not meta_config.owner.isdefault():
break
diff --git a/src/rougail/output_display/output/gitlab.py b/src/rougail/output_display/output/gitlab.py
new file mode 100644
index 00000000..eebf489a
--- /dev/null
+++ b/src/rougail/output_display/output/gitlab.py
@@ -0,0 +1,38 @@
+"""
+Silique (https://www.silique.fr)
+Copyright (C) 2025
+
+This program is free software: you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as published by the
+Free Software Foundation, either version 3 of the License, or (at your
+option) any later version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with this program. If not, see .
+"""
+
+from ..i18n import _
+from .github import OutputFamily as GHOutputFamily
+
+
+class OutputFamily(GHOutputFamily):
+ level = 30
+ name = "gitlab"
+ variable_hidden_color = "+"
+ value_unmodified_color = "-"
+ value_modified_color = "+"
+ error_color = "-"
+ warning_color = "-"
+
+ def set_color(self, color, msg):
+ if not color:
+ return msg
+ return f'[{color} {msg} {color}]'
+
+ def title(self, msg):
+ return f"> [!note] {msg}" + "\n>\n"
diff --git a/tests/errors5-1-results/display.gitlab.md b/tests/errors5-1-results/display.gitlab.md
index 02e469df..a65957f5 100644
--- a/tests/errors5-1-results/display.gitlab.md
+++ b/tests/errors5-1-results/display.gitlab.md
@@ -4,9 +4,8 @@
> - my integer: :bell: [- the value "not_an_integer" is an invalid integer, it's not an integer, it will be ignored when loading from fake user data -]
> - my string: :bell: [- the value "3" is an invalid string, it's not a string, it will be ignored when loading from fake user data -]
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/layers-results/display.gitlab.md b/tests/layers-results/display.gitlab.md
index 90e868c3..d2ac76c7 100644
--- a/tests/layers-results/display.gitlab.md
+++ b/tests/layers-results/display.gitlab.md
@@ -10,4 +10,4 @@
> name4
Variables:
-- :notebook: my variable only to test: [- a value -]
+- :notebook: a_variable (my variable only to test): [- a value -]
diff --git a/tests/layers-results/display.md b/tests/layers-results/display.md
index 8b4c11c4..e1db0f73 100644
--- a/tests/layers-results/display.md
+++ b/tests/layers-results/display.md
@@ -12,4 +12,4 @@
> name4
Variables:
-- :notebook: my variable only to test: a value
+- :notebook: a_variable (my variable only to test): a value
diff --git a/tests/layers-results/display.sh b/tests/layers-results/display.sh
index 0e2c4ef3..8c183d9e 100644
--- a/tests/layers-results/display.sh
+++ b/tests/layers-results/display.sh
@@ -7,4 +7,4 @@
│ name4 │
╰─────────────╯
Variables:
-[94m┗━━ [0m📓 my variable only to test: [38;5;220ma value[0m
+[94m┗━━ [0m📓 a_variable (my variable only to test): [38;5;220ma value[0m
diff --git a/tests/layers-values-config-results/display.gitlab.md b/tests/layers-values-config-results/display.gitlab.md
new file mode 100644
index 00000000..d5f5de0e
--- /dev/null
+++ b/tests/layers-values-config-results/display.gitlab.md
@@ -0,0 +1,14 @@
+> [!note] Caption:
+>
+> - Variable
+> - [+ Modified value +]
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!note] Layers:
+>
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): [+ a modified value +] ← source3 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-config-results/display.md b/tests/layers-values-config-results/display.md
new file mode 100644
index 00000000..74468b96
--- /dev/null
+++ b/tests/layers-values-config-results/display.md
@@ -0,0 +1,16 @@
+> [!NOTE]
+>
+> **Caption:**
+> - Variable
+> - Modified value
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!NOTE]
+>
+> **Layers:**
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): a modified value ← source3 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-config-results/display.sh b/tests/layers-values-config-results/display.sh
new file mode 100644
index 00000000..9d5b9517
--- /dev/null
+++ b/tests/layers-values-config-results/display.sh
@@ -0,0 +1,11 @@
+╭────────────── Caption ───────────────╮
+│ Variable [32mModified value[0m │
+│ (⏳ Original default value) │
+╰──────────────────────────────────────╯
+╭── Layers ───╮
+│ name1 name2 │
+│ name3 │
+│ name4 │
+╰─────────────╯
+Variables:
+[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ source3 (⏳ a value)
diff --git a/tests/layers-values-metaconfig-mix-results/display.gitlab.md b/tests/layers-values-metaconfig-mix-results/display.gitlab.md
new file mode 100644
index 00000000..b11f931e
--- /dev/null
+++ b/tests/layers-values-metaconfig-mix-results/display.gitlab.md
@@ -0,0 +1,14 @@
+> [!note] Caption:
+>
+> - Variable
+> - [+ Modified value +]
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!note] Layers:
+>
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): [+ a modified value +] ← source3 (:hourglass_flowing_sand: a modified value ← source2 :hourglass_flowing_sand: a modified value ← source1 :hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig-mix-results/display.md b/tests/layers-values-metaconfig-mix-results/display.md
new file mode 100644
index 00000000..6a0d293e
--- /dev/null
+++ b/tests/layers-values-metaconfig-mix-results/display.md
@@ -0,0 +1,16 @@
+> [!NOTE]
+>
+> **Caption:**
+> - Variable
+> - Modified value
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!NOTE]
+>
+> **Layers:**
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): a modified value ← source3 (:hourglass_flowing_sand: a modified value ← source2 :hourglass_flowing_sand: a modified value ← source1 :hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig-mix-results/display.sh b/tests/layers-values-metaconfig-mix-results/display.sh
new file mode 100644
index 00000000..54bab9d6
--- /dev/null
+++ b/tests/layers-values-metaconfig-mix-results/display.sh
@@ -0,0 +1,11 @@
+╭────────────── Caption ───────────────╮
+│ Variable [32mModified value[0m │
+│ (⏳ Original default value) │
+╰──────────────────────────────────────╯
+╭── Layers ───╮
+│ name1 name2 │
+│ name3 │
+│ name4 │
+╰─────────────╯
+Variables:
+[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ source3 (⏳ a modified value ◀ source2 ⏳ a modified value ◀ source1 ⏳ a value)
diff --git a/tests/layers-values-metaconfig1-results/display.gitlab.md b/tests/layers-values-metaconfig1-results/display.gitlab.md
new file mode 100644
index 00000000..f95177f7
--- /dev/null
+++ b/tests/layers-values-metaconfig1-results/display.gitlab.md
@@ -0,0 +1,14 @@
+> [!note] Caption:
+>
+> - Variable
+> - [+ Modified value +]
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!note] Layers:
+>
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): [+ a modified value +] ← source2 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig1-results/display.md b/tests/layers-values-metaconfig1-results/display.md
new file mode 100644
index 00000000..de6332a9
--- /dev/null
+++ b/tests/layers-values-metaconfig1-results/display.md
@@ -0,0 +1,16 @@
+> [!NOTE]
+>
+> **Caption:**
+> - Variable
+> - Modified value
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!NOTE]
+>
+> **Layers:**
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): a modified value ← source2 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig1-results/display.sh b/tests/layers-values-metaconfig1-results/display.sh
new file mode 100644
index 00000000..f46f4869
--- /dev/null
+++ b/tests/layers-values-metaconfig1-results/display.sh
@@ -0,0 +1,11 @@
+╭────────────── Caption ───────────────╮
+│ Variable [32mModified value[0m │
+│ (⏳ Original default value) │
+╰──────────────────────────────────────╯
+╭── Layers ───╮
+│ name1 name2 │
+│ name3 │
+│ name4 │
+╰─────────────╯
+Variables:
+[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ source2 (⏳ a value)
diff --git a/tests/layers-values-metaconfig2-results/display.gitlab.md b/tests/layers-values-metaconfig2-results/display.gitlab.md
new file mode 100644
index 00000000..30cc987a
--- /dev/null
+++ b/tests/layers-values-metaconfig2-results/display.gitlab.md
@@ -0,0 +1,14 @@
+> [!note] Caption:
+>
+> - Variable
+> - [+ Modified value +]
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!note] Layers:
+>
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): [+ a modified value +] ← source1 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig2-results/display.md b/tests/layers-values-metaconfig2-results/display.md
new file mode 100644
index 00000000..f013c206
--- /dev/null
+++ b/tests/layers-values-metaconfig2-results/display.md
@@ -0,0 +1,16 @@
+> [!NOTE]
+>
+> **Caption:**
+> - Variable
+> - Modified value
+> - (:hourglass_flowing_sand: Original default value)
+
+> [!NOTE]
+>
+> **Layers:**
+> name1 name2
+> name3
+> name4
+
+Variables:
+- :notebook: a_variable (my variable only to test): a modified value ← source1 (:hourglass_flowing_sand: a value)
diff --git a/tests/layers-values-metaconfig2-results/display.sh b/tests/layers-values-metaconfig2-results/display.sh
new file mode 100644
index 00000000..65d70e70
--- /dev/null
+++ b/tests/layers-values-metaconfig2-results/display.sh
@@ -0,0 +1,11 @@
+╭────────────── Caption ───────────────╮
+│ Variable [32mModified value[0m │
+│ (⏳ Original default value) │
+╰──────────────────────────────────────╯
+╭── Layers ───╮
+│ name1 name2 │
+│ name3 │
+│ name4 │
+╰─────────────╯
+Variables:
+[94m┗━━ [0m📓 a_variable (my variable only to test): [32ma modified value[0m ◀ source1 (⏳ a value)
diff --git a/tests/results/test/00_0version_underscore.gitlab.md b/tests/results/test/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/00_0version_underscore.gitlab.md
+++ b/tests/results/test/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_1empty_variable.gitlab.md b/tests/results/test/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test/00_1empty_variable.gitlab.md
+++ b/tests/results/test/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_2default_calculated.gitlab.md b/tests/results/test/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test/00_2default_calculated.gitlab.md
+++ b/tests/results/test/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_2default_calculated_multi.gitlab.md b/tests/results/test/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test/00_2default_calculated_params_permissive.gitlab.md
index 45ab455d..13866103 100644
--- a/tests/results/test/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/00_2default_calculated_variable.gitlab.md b/tests/results/test/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_2default_calculated_variable_description.gitlab.md b/tests/results/test/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_4load_subfolder.gitlab.md b/tests/results/test/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test/00_4load_subfolder.gitlab.md
+++ b/tests/results/test/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_5load_notype.gitlab.md b/tests/results/test/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test/00_5load_notype.gitlab.md
+++ b/tests/results/test/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6boolean.gitlab.md b/tests/results/test/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test/00_6boolean.gitlab.md
+++ b/tests/results/test/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6boolean_no_mandatory.gitlab.md b/tests/results/test/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice.gitlab.md b/tests/results/test/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test/00_6choice.gitlab.md
+++ b/tests/results/test/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice_calculation.gitlab.md b/tests/results/test/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test/00_6choice_calculation.gitlab.md
+++ b/tests/results/test/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice_link.gitlab.md b/tests/results/test/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test/00_6choice_link.gitlab.md
+++ b/tests/results/test/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice_variable.gitlab.md b/tests/results/test/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test/00_6choice_variable.gitlab.md
+++ b/tests/results/test/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice_variable_link.gitlab.md b/tests/results/test/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6choice_variable_link2.gitlab.md b/tests/results/test/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6custom.gitlab.md b/tests/results/test/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test/00_6custom.gitlab.md
+++ b/tests/results/test/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6domainname.gitlab.md b/tests/results/test/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test/00_6domainname.gitlab.md
+++ b/tests/results/test/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6domainname_params.gitlab.md b/tests/results/test/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test/00_6domainname_params.gitlab.md
+++ b/tests/results/test/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6float.gitlab.md b/tests/results/test/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test/00_6float.gitlab.md
+++ b/tests/results/test/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6integer.gitlab.md b/tests/results/test/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test/00_6integer.gitlab.md
+++ b/tests/results/test/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6ip.gitlab.md b/tests/results/test/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test/00_6ip.gitlab.md
+++ b/tests/results/test/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6network.gitlab.md b/tests/results/test/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test/00_6network.gitlab.md
+++ b/tests/results/test/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6number.gitlab.md b/tests/results/test/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test/00_6number.gitlab.md
+++ b/tests/results/test/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6port.gitlab.md b/tests/results/test/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test/00_6port.gitlab.md
+++ b/tests/results/test/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6regexp.gitlab.md b/tests/results/test/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test/00_6regexp.gitlab.md
+++ b/tests/results/test/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6regexp_link.gitlab.md b/tests/results/test/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test/00_6regexp_link.gitlab.md
+++ b/tests/results/test/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6secret.gitlab.md b/tests/results/test/00_6secret.gitlab.md
index 738499bf..779b7c15 100644
--- a/tests/results/test/00_6secret.gitlab.md
+++ b/tests/results/test/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6secret_param.gitlab.md b/tests/results/test/00_6secret_param.gitlab.md
index 57dd9f92..a2451c23 100644
--- a/tests/results/test/00_6secret_param.gitlab.md
+++ b/tests/results/test/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_6string.gitlab.md b/tests/results/test/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test/00_6string.gitlab.md
+++ b/tests/results/test/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_7choice_quote.gitlab.md b/tests/results/test/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test/00_7choice_quote.gitlab.md
+++ b/tests/results/test/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_7help.gitlab.md b/tests/results/test/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test/00_7help.gitlab.md
+++ b/tests/results/test/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_7help_quote.gitlab.md b/tests/results/test/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test/00_7help_quote.gitlab.md
+++ b/tests/results/test/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_7help_sup.gitlab.md b/tests/results/test/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test/00_7help_sup.gitlab.md
+++ b/tests/results/test/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_7value_doublequote.gitlab.md b/tests/results/test/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test/00_7value_doublequote.gitlab.md
+++ b/tests/results/test/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_7value_doublequote2.gitlab.md b/tests/results/test/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_7value_doublequote3.gitlab.md b/tests/results/test/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_7value_quote.gitlab.md b/tests/results/test/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test/00_7value_quote.gitlab.md
+++ b/tests/results/test/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_8calculation_information.gitlab.md b/tests/results/test/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/00_8calculation_information.gitlab.md
+++ b/tests/results/test/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_8test.gitlab.md b/tests/results/test/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test/00_8test.gitlab.md
+++ b/tests/results/test/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9choice_variable_multi.gitlab.md b/tests/results/test/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9choice_variables.gitlab.md b/tests/results/test/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test/00_9choice_variables.gitlab.md
+++ b/tests/results/test/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation.gitlab.md b/tests/results/test/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test/00_9default_calculation.gitlab.md
+++ b/tests/results/test/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation_information.gitlab.md b/tests/results/test/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation_optional.gitlab.md b/tests/results/test/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_calculation_param_optional.gitlab.md b/tests/results/test/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_information_other_variable.gitlab.md b/tests/results/test/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9default_information_other_variable2.gitlab.md b/tests/results/test/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/00_9default_integer.gitlab.md b/tests/results/test/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test/00_9default_integer.gitlab.md
+++ b/tests/results/test/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/00_9default_number.gitlab.md b/tests/results/test/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test/00_9default_number.gitlab.md
+++ b/tests/results/test/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6boolean_multi.gitlab.md b/tests/results/test/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test/01_6boolean_multi.gitlab.md
+++ b/tests/results/test/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6custom_multi.gitlab.md b/tests/results/test/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test/01_6custom_multi.gitlab.md
+++ b/tests/results/test/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6float_multi.gitlab.md b/tests/results/test/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test/01_6float_multi.gitlab.md
+++ b/tests/results/test/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6integer_multi.gitlab.md b/tests/results/test/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test/01_6integer_multi.gitlab.md
+++ b/tests/results/test/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6integer_multi_mandatory.gitlab.md b/tests/results/test/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/01_6string_empty.gitlab.md b/tests/results/test/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test/01_6string_empty.gitlab.md
+++ b/tests/results/test/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6string_multi.gitlab.md b/tests/results/test/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test/01_6string_multi.gitlab.md
+++ b/tests/results/test/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_6string_multi_length.gitlab.md b/tests/results/test/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test/01_6string_multi_length.gitlab.md
+++ b/tests/results/test/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_7value_multi_doublequote.gitlab.md b/tests/results/test/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_7value_multi_doublequote2.gitlab.md b/tests/results/test/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_7value_multi_quote.gitlab.md b/tests/results/test/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_8calculation_information_multi.gitlab.md b/tests/results/test/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/01_9choice_variable_multi.gitlab.md b/tests/results/test/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/01_9choice_variable_optional.gitlab.md b/tests/results/test/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/02_0tags.gitlab.md b/tests/results/test/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test/02_0tags.gitlab.md
+++ b/tests/results/test/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/04_0type_param.gitlab.md b/tests/results/test/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test/04_0type_param.gitlab.md
+++ b/tests/results/test/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_0type_param_integer.gitlab.md b/tests/results/test/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test/04_0type_param_integer.gitlab.md
+++ b/tests/results/test/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_1auto_save.gitlab.md b/tests/results/test/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test/04_1auto_save.gitlab.md
+++ b/tests/results/test/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/04_1auto_save_and_calculated.gitlab.md b/tests/results/test/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_1auto_save_and_hidden.gitlab.md b/tests/results/test/04_1auto_save_and_hidden.gitlab.md
index 85c7019d..bcf7ff49 100644
--- a/tests/results/test/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test/04_1default_calculation_hidden.gitlab.md b/tests/results/test/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test/04_1default_calculation_hidden_3.gitlab.md
index 2b084f0f..83e58822 100644
--- a/tests/results/test/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test/04_1default_calculation_hidden_4.gitlab.md
index f9a96148..a2670320 100644
--- a/tests/results/test/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test/04_1default_calculation_hidden_5.gitlab.md
index 1e67ef15..9aa189d6 100644
--- a/tests/results/test/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test/04_1default_calculation_hidden_6.gitlab.md
index 2c560f47..30a44aa9 100644
--- a/tests/results/test/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_optional.gitlab.md b/tests/results/test/04_5disabled_calculation_optional.gitlab.md
index 56648503..86d7cc94 100644
--- a/tests/results/test/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
index 346609c7..5fbf4a7b 100644
--- a/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_5disabled_calculation_variable.gitlab.md b/tests/results/test/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test/04_5disabled_calculation_variable5.gitlab.md
index 3cf5b9c5..bf47084a 100644
--- a/tests/results/test/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test/04_5disabled_calculation_variable8.gitlab.md
index 2754f1a6..2ecc7531 100644
--- a/tests/results/test/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators.gitlab.md b/tests/results/test/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test/04_5validators.gitlab.md
+++ b/tests/results/test/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/04_5validators_differ.gitlab.md b/tests/results/test/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test/04_5validators_differ.gitlab.md
+++ b/tests/results/test/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators_multi.gitlab.md b/tests/results/test/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test/04_5validators_multi.gitlab.md
+++ b/tests/results/test/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators_multi2.gitlab.md b/tests/results/test/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test/04_5validators_multi2.gitlab.md
+++ b/tests/results/test/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators_multi3.gitlab.md b/tests/results/test/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test/04_5validators_multi3.gitlab.md
+++ b/tests/results/test/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators_warnings.gitlab.md b/tests/results/test/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test/04_5validators_warnings.gitlab.md
+++ b/tests/results/test/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/04_5validators_warnings_all.gitlab.md b/tests/results/test/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/05_0multi_not_uniq.gitlab.md b/tests/results/test/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/05_0multi_uniq.gitlab.md b/tests/results/test/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test/05_0multi_uniq.gitlab.md
+++ b/tests/results/test/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/12_1auto_save_expert.gitlab.md b/tests/results/test/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_0redefine_description.gitlab.md b/tests/results/test/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test/16_0redefine_description.gitlab.md
+++ b/tests/results/test/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_3family_empty_at_ends.gitlab.md b/tests/results/test/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_5exists_nonexists.gitlab.md b/tests/results/test/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_5exists_redefine.gitlab.md b/tests/results/test/16_5exists_redefine.gitlab.md
index c32c1bb6..c0b17e62 100644
--- a/tests/results/test/16_5exists_redefine.gitlab.md
+++ b/tests/results/test/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/16_5redefine_calculation.gitlab.md b/tests/results/test/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_5redefine_choice.gitlab.md b/tests/results/test/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test/16_5redefine_choice.gitlab.md
+++ b/tests/results/test/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_5redefine_default.gitlab.md b/tests/results/test/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test/16_5redefine_default.gitlab.md
+++ b/tests/results/test/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_5redefine_default_calculation.gitlab.md b/tests/results/test/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_5redefine_family.gitlab.md b/tests/results/test/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test/16_5redefine_family.gitlab.md
+++ b/tests/results/test/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_5redefine_help.gitlab.md b/tests/results/test/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test/16_5redefine_help.gitlab.md
+++ b/tests/results/test/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16_5redefine_hidden.gitlab.md b/tests/results/test/16_5redefine_hidden.gitlab.md
index 0683db43..73993b0b 100644
--- a/tests/results/test/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/16_5redefine_multi.gitlab.md b/tests/results/test/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test/16_5redefine_multi.gitlab.md
+++ b/tests/results/test/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_5test_redefine.gitlab.md b/tests/results/test/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test/16_5test_redefine.gitlab.md
+++ b/tests/results/test/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_6choice_redefine.gitlab.md b/tests/results/test/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test/16_6choice_redefine.gitlab.md
+++ b/tests/results/test/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/16_6exists_redefine_family.gitlab.md b/tests/results/test/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/16exists_exists.gitlab.md b/tests/results/test/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test/16exists_exists.gitlab.md
+++ b/tests/results/test/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/17_5redefine_leadership.gitlab.md b/tests/results/test/17_5redefine_leadership.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/20_0family_append.gitlab.md b/tests/results/test/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test/20_0family_append.gitlab.md
+++ b/tests/results/test/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_0multi_family.gitlab.md b/tests/results/test/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test/20_0multi_family.gitlab.md
+++ b/tests/results/test/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_0multi_family_basic.gitlab.md b/tests/results/test/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_0multi_family_expert.gitlab.md b/tests/results/test/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_0multi_family_order.gitlab.md b/tests/results/test/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test/20_0multi_family_order.gitlab.md
+++ b/tests/results/test/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_0validators_differ_redefine.gitlab.md b/tests/results/test/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/20_2family_looks_like_variable.gitlab.md b/tests/results/test/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/20_7help_family.gitlab.md b/tests/results/test/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test/20_7help_family.gitlab.md
+++ b/tests/results/test/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_9default_information_parent.gitlab.md b/tests/results/test/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test/20_9default_information_parent.gitlab.md
+++ b/tests/results/test/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/20_9family_absolute.gitlab.md b/tests/results/test/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test/20_9family_absolute.gitlab.md
+++ b/tests/results/test/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 322c9c27..21fc5580 100644
--- a/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/24_0family_mandatory_condition.gitlab.md b/tests/results/test/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/24_7validators_variable_optional.gitlab.md b/tests/results/test/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_0leadership.gitlab.md b/tests/results/test/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test/40_0leadership.gitlab.md
+++ b/tests/results/test/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/40_0leadership_diff_name.gitlab.md b/tests/results/test/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_0leadership_follower_default_value.gitlab.md b/tests/results/test/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_0leadership_leader_follower.gitlab.md b/tests/results/test/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_0leadership_reduce.gitlab.md b/tests/results/test/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_1leadership_append_follower.gitlab.md b/tests/results/test/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/40_2leadership_calculation_index.gitlab.md b/tests/results/test/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_6leadership_follower_multi.gitlab.md b/tests/results/test/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_8calculation_boolean.gitlab.md b/tests/results/test/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_8calculation_multi_variable.gitlab.md b/tests/results/test/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-variable.gitlab.md b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/41_0choice_leader.gitlab.md b/tests/results/test/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test/41_0choice_leader.gitlab.md
+++ b/tests/results/test/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/44_0leadership_hidden.gitlab.md b/tests/results/test/44_0leadership_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/44_0leadership_leader_hidden.gitlab.md b/tests/results/test/44_0leadership_leader_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test/44_1leadership_append_hidden_follower.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/44_4leadership_mandatory.gitlab.md b/tests/results/test/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic.gitlab.md b/tests/results/test/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test/60_0family_dynamic.gitlab.md
+++ b/tests/results/test/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_1_1.gitlab.md b/tests/results/test/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_0family_dynamic_empty.gitlab.md b/tests/results/test/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_no_description.gitlab.md b/tests/results/test/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md
index 3205ecd0..4d17de1f 100644
--- a/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/60_0family_dynamic_static.gitlab.md b/tests/results/test/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_0family_dynamic_test.gitlab.md b/tests/results/test/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_0family_hidden.gitlab.md b/tests/results/test/60_0family_hidden.gitlab.md
index 94c94c35..b0dfacb0 100644
--- a/tests/results/test/60_0family_hidden.gitlab.md
+++ b/tests/results/test/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/60_0family_mode.gitlab.md b/tests/results/test/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test/60_0family_mode.gitlab.md
+++ b/tests/results/test/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_1family_dynamic_jinja.gitlab.md b/tests/results/test/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
index 09178a3c..0e972fcb 100644
--- a/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_6family_dynamic_leadership.gitlab.md b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test/68_0family_leadership_mode.gitlab.md b/tests/results/test/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_mandatory/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/00_0version_underscore.gitlab.md
+++ b/tests/results/test_mandatory/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_mandatory/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_mandatory/00_1empty_variable.gitlab.md
+++ b/tests/results/test_mandatory/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_mandatory/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_mandatory/00_2default_calculated.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md
index 45ab455d..13866103 100644
--- a/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_mandatory/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_mandatory/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_mandatory/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_5load_notype.gitlab.md b/tests/results/test_mandatory/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_mandatory/00_5load_notype.gitlab.md
+++ b/tests/results/test_mandatory/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6boolean.gitlab.md b/tests/results/test_mandatory/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_mandatory/00_6boolean.gitlab.md
+++ b/tests/results/test_mandatory/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice.gitlab.md b/tests/results/test_mandatory/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_mandatory/00_6choice.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_mandatory/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice_link.gitlab.md b/tests/results/test_mandatory/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_mandatory/00_6choice_link.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_mandatory/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_mandatory/00_6choice_variable.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6custom.gitlab.md b/tests/results/test_mandatory/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_mandatory/00_6custom.gitlab.md
+++ b/tests/results/test_mandatory/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6domainname.gitlab.md b/tests/results/test_mandatory/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_mandatory/00_6domainname.gitlab.md
+++ b/tests/results/test_mandatory/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_mandatory/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_mandatory/00_6domainname_params.gitlab.md
+++ b/tests/results/test_mandatory/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6float.gitlab.md b/tests/results/test_mandatory/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_mandatory/00_6float.gitlab.md
+++ b/tests/results/test_mandatory/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6integer.gitlab.md b/tests/results/test_mandatory/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_mandatory/00_6integer.gitlab.md
+++ b/tests/results/test_mandatory/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6ip.gitlab.md b/tests/results/test_mandatory/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_mandatory/00_6ip.gitlab.md
+++ b/tests/results/test_mandatory/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6network.gitlab.md b/tests/results/test_mandatory/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_mandatory/00_6network.gitlab.md
+++ b/tests/results/test_mandatory/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6number.gitlab.md b/tests/results/test_mandatory/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_mandatory/00_6number.gitlab.md
+++ b/tests/results/test_mandatory/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6port.gitlab.md b/tests/results/test_mandatory/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_mandatory/00_6port.gitlab.md
+++ b/tests/results/test_mandatory/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6regexp.gitlab.md b/tests/results/test_mandatory/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_mandatory/00_6regexp.gitlab.md
+++ b/tests/results/test_mandatory/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_mandatory/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_mandatory/00_6regexp_link.gitlab.md
+++ b/tests/results/test_mandatory/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6secret.gitlab.md b/tests/results/test_mandatory/00_6secret.gitlab.md
index 738499bf..779b7c15 100644
--- a/tests/results/test_mandatory/00_6secret.gitlab.md
+++ b/tests/results/test_mandatory/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6secret_param.gitlab.md b/tests/results/test_mandatory/00_6secret_param.gitlab.md
index 57dd9f92..a2451c23 100644
--- a/tests/results/test_mandatory/00_6secret_param.gitlab.md
+++ b/tests/results/test_mandatory/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_6string.gitlab.md b/tests/results/test_mandatory/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_mandatory/00_6string.gitlab.md
+++ b/tests/results/test_mandatory/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_mandatory/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_mandatory/00_7choice_quote.gitlab.md
+++ b/tests/results/test_mandatory/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_7help.gitlab.md b/tests/results/test_mandatory/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory/00_7help.gitlab.md
+++ b/tests/results/test_mandatory/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_7help_quote.gitlab.md b/tests/results/test_mandatory/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory/00_7help_quote.gitlab.md
+++ b/tests/results/test_mandatory/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_7help_sup.gitlab.md b/tests/results/test_mandatory/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_mandatory/00_7help_sup.gitlab.md
+++ b/tests/results/test_mandatory/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_mandatory/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_mandatory/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_7value_quote.gitlab.md b/tests/results/test_mandatory/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_mandatory/00_7value_quote.gitlab.md
+++ b/tests/results/test_mandatory/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_mandatory/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/00_8calculation_information.gitlab.md
+++ b/tests/results/test_mandatory/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_8test.gitlab.md b/tests/results/test_mandatory/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_mandatory/00_8test.gitlab.md
+++ b/tests/results/test_mandatory/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_mandatory/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_mandatory/00_9choice_variables.gitlab.md
+++ b/tests/results/test_mandatory/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_mandatory/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_mandatory/00_9default_calculation.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/00_9default_integer.gitlab.md b/tests/results/test_mandatory/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory/00_9default_integer.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/00_9default_number.gitlab.md b/tests/results/test_mandatory/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory/00_9default_number.gitlab.md
+++ b/tests/results/test_mandatory/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_mandatory/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_mandatory/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_mandatory/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_mandatory/01_6custom_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6float_multi.gitlab.md b/tests/results/test_mandatory/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_mandatory/01_6float_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_mandatory/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_mandatory/01_6integer_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/01_6string_empty.gitlab.md b/tests/results/test_mandatory/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_mandatory/01_6string_empty.gitlab.md
+++ b/tests/results/test_mandatory/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6string_multi.gitlab.md b/tests/results/test_mandatory/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_mandatory/01_6string_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_mandatory/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_mandatory/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_mandatory/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/02_0tags.gitlab.md b/tests/results/test_mandatory/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory/02_0tags.gitlab.md
+++ b/tests/results/test_mandatory/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_0type_param.gitlab.md b/tests/results/test_mandatory/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_mandatory/04_0type_param.gitlab.md
+++ b/tests/results/test_mandatory/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_mandatory/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_mandatory/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_mandatory/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_1auto_save.gitlab.md b/tests/results/test_mandatory/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_mandatory/04_1auto_save.gitlab.md
+++ b/tests/results/test_mandatory/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md
index 85c7019d..bcf7ff49 100644
--- a/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md
index 2b084f0f..83e58822 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md
index f9a96148..a2670320 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md
index 1e67ef15..9aa189d6 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md
index 2c560f47..30a44aa9 100644
--- a/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md
index 56648503..86d7cc94 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md
index 346609c7..5fbf4a7b 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md
index 3cf5b9c5..bf47084a 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md
index 2754f1a6..2ecc7531 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators.gitlab.md b/tests/results/test_mandatory/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_mandatory/04_5validators.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_mandatory/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_mandatory/04_5validators_differ.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_mandatory/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_mandatory/04_5validators_multi.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_mandatory/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_mandatory/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_mandatory/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_mandatory/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_mandatory/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_mandatory/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_mandatory/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_mandatory/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_mandatory/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_mandatory/16_0redefine_description.gitlab.md
+++ b/tests/results/test_mandatory/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_mandatory/16_5exists_redefine.gitlab.md
index c32c1bb6..c0b17e62 100644
--- a/tests/results/test_mandatory/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_mandatory/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_mandatory/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_mandatory/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_mandatory/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_mandatory/16_5redefine_default.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_mandatory/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_mandatory/16_5redefine_family.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_mandatory/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_mandatory/16_5redefine_help.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md
index 0683db43..73993b0b 100644
--- a/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_mandatory/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_mandatory/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_mandatory/16_5test_redefine.gitlab.md
+++ b/tests/results/test_mandatory/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_mandatory/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_mandatory/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_mandatory/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/16exists_exists.gitlab.md b/tests/results/test_mandatory/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_mandatory/16exists_exists.gitlab.md
+++ b/tests/results/test_mandatory/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/20_0family_append.gitlab.md b/tests/results/test_mandatory/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_mandatory/20_0family_append.gitlab.md
+++ b/tests/results/test_mandatory/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_0multi_family.gitlab.md b/tests/results/test_mandatory/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory/20_0multi_family.gitlab.md
+++ b/tests/results/test_mandatory/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_mandatory/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_mandatory/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_mandatory/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/20_7help_family.gitlab.md b/tests/results/test_mandatory/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_mandatory/20_7help_family.gitlab.md
+++ b/tests/results/test_mandatory/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_mandatory/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_mandatory/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_mandatory/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/20_9family_absolute.gitlab.md b/tests/results/test_mandatory/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_mandatory/20_9family_absolute.gitlab.md
+++ b/tests/results/test_mandatory/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 322c9c27..21fc5580 100644
--- a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_0leadership.gitlab.md b/tests/results/test_mandatory/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_mandatory/40_0leadership.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_mandatory/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_mandatory/41_0choice_leader.gitlab.md
+++ b/tests/results/test_mandatory/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_mandatory/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md
index 3205ecd0..4d17de1f 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_mandatory/60_0family_hidden.gitlab.md
index 94c94c35..b0dfacb0 100644
--- a/tests/results/test_mandatory/60_0family_hidden.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/60_0family_mode.gitlab.md b/tests/results/test_mandatory/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_mandatory/60_0family_mode.gitlab.md
+++ b/tests/results/test_mandatory/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
index 09178a3c..0e972fcb 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
index 45ab455d..13866103 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_mandatory_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_mandatory_secrets/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_mandatory_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_mandatory_secrets/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_mandatory_secrets/00_6float.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_mandatory_secrets/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_mandatory_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_mandatory_secrets/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_mandatory_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_mandatory_secrets/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_mandatory_secrets/00_6network.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_mandatory_secrets/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_mandatory_secrets/00_6number.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_mandatory_secrets/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_mandatory_secrets/00_6port.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_mandatory_secrets/00_6secret.gitlab.md
index 33de27df..a968e0a0 100644
--- a/tests/results/test_mandatory_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md
index 08fa810f..82fa4804 100644
--- a/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_mandatory_secrets/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_mandatory_secrets/00_6string.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_mandatory_secrets/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory_secrets/00_7help.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_mandatory_secrets/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_mandatory_secrets/00_8test.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_mandatory_secrets/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_mandatory_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_mandatory_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
index 85c7019d..bcf7ff49 100644
--- a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
index 2b084f0f..83e58822 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
index f9a96148..a2670320 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
index 1e67ef15..9aa189d6 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
index 2c560f47..30a44aa9 100644
--- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
index 56648503..86d7cc94 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 346609c7..5fbf4a7b 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
index 3cf5b9c5..bf47084a 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
index 2754f1a6..2ecc7531 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_mandatory_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md
index c32c1bb6..c0b17e62 100644
--- a/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md
index 0683db43..73993b0b 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md b/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md
+++ b/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 322c9c27..21fc5580 100644
--- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
index 3205ecd0..4d17de1f 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md
index 94c94c35..b0dfacb0 100644
--- a/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 09178a3c..0e972fcb 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_0version_underscore.gitlab.md b/tests/results/test_namespace/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_1empty_variable.gitlab.md b/tests/results/test_namespace/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_2default_calculated.gitlab.md b/tests/results/test_namespace/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
index 8d473aa1..a7790e0f 100644
--- a/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_4load_subfolder.gitlab.md b/tests/results/test_namespace/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_5load_notype.gitlab.md b/tests/results/test_namespace/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6boolean.gitlab.md b/tests/results/test_namespace/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice.gitlab.md b/tests/results/test_namespace/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace/00_6choice.gitlab.md
+++ b/tests/results/test_namespace/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice_calculation.gitlab.md b/tests/results/test_namespace/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice_link.gitlab.md b/tests/results/test_namespace/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice_variable.gitlab.md b/tests/results/test_namespace/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6custom.gitlab.md b/tests/results/test_namespace/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace/00_6custom.gitlab.md
+++ b/tests/results/test_namespace/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6domainname.gitlab.md b/tests/results/test_namespace/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6domainname_params.gitlab.md b/tests/results/test_namespace/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6float.gitlab.md b/tests/results/test_namespace/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace/00_6float.gitlab.md
+++ b/tests/results/test_namespace/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6integer.gitlab.md b/tests/results/test_namespace/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace/00_6integer.gitlab.md
+++ b/tests/results/test_namespace/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6ip.gitlab.md b/tests/results/test_namespace/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace/00_6ip.gitlab.md
+++ b/tests/results/test_namespace/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6network.gitlab.md b/tests/results/test_namespace/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace/00_6network.gitlab.md
+++ b/tests/results/test_namespace/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6number.gitlab.md b/tests/results/test_namespace/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace/00_6number.gitlab.md
+++ b/tests/results/test_namespace/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6port.gitlab.md b/tests/results/test_namespace/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace/00_6port.gitlab.md
+++ b/tests/results/test_namespace/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6regexp.gitlab.md b/tests/results/test_namespace/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6regexp_link.gitlab.md b/tests/results/test_namespace/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6secret.gitlab.md b/tests/results/test_namespace/00_6secret.gitlab.md
index 14f5ef23..b1021e33 100644
--- a/tests/results/test_namespace/00_6secret.gitlab.md
+++ b/tests/results/test_namespace/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6secret_param.gitlab.md b/tests/results/test_namespace/00_6secret_param.gitlab.md
index a6119cf2..e8a475b2 100644
--- a/tests/results/test_namespace/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_6string.gitlab.md b/tests/results/test_namespace/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace/00_6string.gitlab.md
+++ b/tests/results/test_namespace/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_7choice_quote.gitlab.md b/tests/results/test_namespace/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_7help.gitlab.md b/tests/results/test_namespace/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace/00_7help.gitlab.md
+++ b/tests/results/test_namespace/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_7help_quote.gitlab.md b/tests/results/test_namespace/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_7help_sup.gitlab.md b/tests/results/test_namespace/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_7value_doublequote.gitlab.md b/tests/results/test_namespace/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_7value_quote.gitlab.md b/tests/results/test_namespace/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_8calculation_information.gitlab.md b/tests/results/test_namespace/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_8test.gitlab.md b/tests/results/test_namespace/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace/00_8test.gitlab.md
+++ b/tests/results/test_namespace/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9choice_variables.gitlab.md b/tests/results/test_namespace/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation.gitlab.md b/tests/results/test_namespace/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/00_9default_integer.gitlab.md b/tests/results/test_namespace/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9default_number.gitlab.md b/tests/results/test_namespace/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9extra.gitlab.md b/tests/results/test_namespace/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace/00_9extra.gitlab.md
+++ b/tests/results/test_namespace/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9extra_calculation.gitlab.md b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/00_9extra_ouside.gitlab.md b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6boolean_multi.gitlab.md b/tests/results/test_namespace/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6custom_multi.gitlab.md b/tests/results/test_namespace/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6float_multi.gitlab.md b/tests/results/test_namespace/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6integer_multi.gitlab.md b/tests/results/test_namespace/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/01_6string_empty.gitlab.md b/tests/results/test_namespace/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6string_multi.gitlab.md b/tests/results/test_namespace/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_6string_multi_length.gitlab.md b/tests/results/test_namespace/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/02_0tags.gitlab.md b/tests/results/test_namespace/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace/02_0tags.gitlab.md
+++ b/tests/results/test_namespace/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_0type_param.gitlab.md b/tests/results/test_namespace/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_0type_param_integer.gitlab.md b/tests/results/test_namespace/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_1auto_save.gitlab.md b/tests/results/test_namespace/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace/04_1auto_save_and_hidden.gitlab.md
index ebddd8fe..f6de21d8 100644
--- a/tests/results/test_namespace/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
index 62372d03..330ef892 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
index 2c32e5cd..aec396d2 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
index e3b5fa91..c54c27f2 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
index 60a5a6f6..5593673c 100644
--- a/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
index 6aa87f45..6a8fc117 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
index 4ab3e6a4..d10e7641 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md
index 763f1eb8..142bddac 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md
index 80b2a457..d36a88ce 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
index b1d2cd97..99f7bf44 100644
--- a/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators.gitlab.md b/tests/results/test_namespace/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace/04_5validators.gitlab.md
+++ b/tests/results/test_namespace/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/04_5validators_differ.gitlab.md b/tests/results/test_namespace/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators_multi.gitlab.md b/tests/results/test_namespace/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators_multi2.gitlab.md b/tests/results/test_namespace/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators_multi3.gitlab.md b/tests/results/test_namespace/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators_warnings.gitlab.md b/tests/results/test_namespace/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/05_0multi_uniq.gitlab.md b/tests/results/test_namespace/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_0redefine_description.gitlab.md b/tests/results/test_namespace/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_5exists_redefine.gitlab.md b/tests/results/test_namespace/16_5exists_redefine.gitlab.md
index 2cc2bd54..f10ec377 100644
--- a/tests/results/test_namespace/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_namespace/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_5redefine_choice.gitlab.md b/tests/results/test_namespace/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_5redefine_default.gitlab.md b/tests/results/test_namespace/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_5redefine_family.gitlab.md b/tests/results/test_namespace/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_5redefine_help.gitlab.md b/tests/results/test_namespace/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace/16_5redefine_hidden.gitlab.md
index 1b5f0a40..d142999b 100644
--- a/tests/results/test_namespace/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/16_5redefine_multi.gitlab.md b/tests/results/test_namespace/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_5test_redefine.gitlab.md b/tests/results/test_namespace/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_6choice_redefine.gitlab.md b/tests/results/test_namespace/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/16exists_exists.gitlab.md b/tests/results/test_namespace/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace/17_5redefine_leadership.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_namespace/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/20_0family_append.gitlab.md b/tests/results/test_namespace/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_0multi_family.gitlab.md b/tests/results/test_namespace/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_0multi_family_order.gitlab.md b/tests/results/test_namespace/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/20_7help_family.gitlab.md b/tests/results/test_namespace/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/20_9default_information_parent.gitlab.md b/tests/results/test_namespace/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
index d287142a..0636c3f5 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
index c2e0a3f6..85a07a04 100644
--- a/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership.gitlab.md b/tests/results/test_namespace/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_integer.gitlab.md b/tests/results/test_namespace/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/41_0choice_leader.gitlab.md b/tests/results/test_namespace/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace/44_0leadership_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_namespace/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace/44_0leadership_leader_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_namespace/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace/44_1leadership_append_hidden_follower.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_namespace/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic.gitlab.md b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md
index 08f55bf1..807f0dd4 100644
--- a/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_0family_hidden.gitlab.md b/tests/results/test_namespace/60_0family_hidden.gitlab.md
index f8cbffa5..4575d1e0 100644
--- a/tests/results/test_namespace/60_0family_hidden.gitlab.md
+++ b/tests/results/test_namespace/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_0family_mode.gitlab.md b/tests/results/test_namespace/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index f932f91a..1d515990 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 7fb2b49a..f37d739e 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 0af3f538..805a7cf2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
index ea61810c..7fc8129d 100644
--- a/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md
index 8d473aa1..a7790e0f 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md b/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md b/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_mandatory/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6custom.gitlab.md b/tests/results/test_namespace_mandatory/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_mandatory/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md b/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6float.gitlab.md b/tests/results/test_namespace_mandatory/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_mandatory/00_6float.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6integer.gitlab.md b/tests/results/test_namespace_mandatory/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_mandatory/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6ip.gitlab.md b/tests/results/test_namespace_mandatory/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_mandatory/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6network.gitlab.md b/tests/results/test_namespace_mandatory/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_mandatory/00_6network.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6number.gitlab.md b/tests/results/test_namespace_mandatory/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_mandatory/00_6number.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6port.gitlab.md b/tests/results/test_namespace_mandatory/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_mandatory/00_6port.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md b/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6secret.gitlab.md b/tests/results/test_namespace_mandatory/00_6secret.gitlab.md
index 14f5ef23..b1021e33 100644
--- a/tests/results/test_namespace_mandatory/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md b/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md
index a6119cf2..e8a475b2 100644
--- a/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_6string.gitlab.md b/tests/results/test_namespace_mandatory/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_mandatory/00_6string.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_7help.gitlab.md b/tests/results/test_namespace_mandatory/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory/00_7help.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md b/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_8test.gitlab.md b/tests/results/test_namespace_mandatory/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_mandatory/00_8test.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9extra.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_mandatory/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/02_0tags.gitlab.md b/tests/results/test_namespace_mandatory/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_mandatory/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md b/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md
index ebddd8fe..f6de21d8 100644
--- a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md
index 62372d03..330ef892 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md
index 2c32e5cd..aec396d2 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md
index e3b5fa91..c54c27f2 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md
index 60a5a6f6..5593673c 100644
--- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md
index 6aa87f45..6a8fc117 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md
index 4ab3e6a4..d10e7641 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md
index 763f1eb8..142bddac 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md
index 80b2a457..d36a88ce 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md
index b1d2cd97..99f7bf44 100644
--- a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_mandatory/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md
index 2cc2bd54..f10ec377 100644
--- a/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md
index 1b5f0a40..d142999b 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md b/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md b/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md b/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
index d287142a..0636c3f5 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
index c2e0a3f6..85a07a04 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md
index 08f55bf1..807f0dd4 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md
index f8cbffa5..4575d1e0 100644
--- a/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index f932f91a..1d515990 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 7fb2b49a..f37d739e 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 0af3f538..805a7cf2 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
index ea61810c..7fc8129d 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
index 8d473aa1..a7790e0f 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md
index d7726194..5c4be39d 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md
index c34b13ee..711794cb 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
index ebddd8fe..f6de21d8 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
index 62372d03..330ef892 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
index 2c32e5cd..aec396d2 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
index e3b5fa91..c54c27f2 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
index 60a5a6f6..5593673c 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
index 6aa87f45..6a8fc117 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 4ab3e6a4..d10e7641 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
index 763f1eb8..142bddac 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
index 80b2a457..d36a88ce 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md
index b1d2cd97..99f7bf44 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md
index 2cc2bd54..f10ec377 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md
index 1b5f0a40..d142999b 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index d287142a..0636c3f5 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
index c2e0a3f6..85a07a04 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
index 08f55bf1..807f0dd4 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md
index f8cbffa5..4575d1e0 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index f932f91a..1d515990 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 7fb2b49a..f37d739e 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 0af3f538..805a7cf2 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index ea61810c..7fc8129d 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_read_write/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.gitlab.md
index 220b0ea1..2d172f54 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_read_write/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_read_write/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_read_write/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice.gitlab.md b/tests/results/test_namespace_read_write/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_read_write/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_read_write/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_read_write/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_read_write/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_read_write/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6custom.gitlab.md b/tests/results/test_namespace_read_write/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_read_write/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6float.gitlab.md b/tests/results/test_namespace_read_write/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_read_write/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6integer.gitlab.md b/tests/results/test_namespace_read_write/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6ip.gitlab.md b/tests/results/test_namespace_read_write/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_read_write/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6network.gitlab.md b/tests/results/test_namespace_read_write/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_read_write/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6number.gitlab.md b/tests/results/test_namespace_read_write/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6port.gitlab.md b/tests/results/test_namespace_read_write/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_read_write/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_read_write/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_read_write/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6secret.gitlab.md b/tests/results/test_namespace_read_write/00_6secret.gitlab.md
index 14f5ef23..b1021e33 100644
--- a/tests/results/test_namespace_read_write/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write/00_6secret_param.gitlab.md
index a6119cf2..e8a475b2 100644
--- a/tests/results/test_namespace_read_write/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_6string.gitlab.md b/tests/results/test_namespace_read_write/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_read_write/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_read_write/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_7help.gitlab.md b/tests/results/test_namespace_read_write/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_read_write/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_read_write/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_read_write/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_read_write/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_read_write/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_8test.gitlab.md b/tests/results/test_namespace_read_write/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_read_write/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_read_write/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_read_write/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9extra.gitlab.md b/tests/results/test_namespace_read_write/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_read_write/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_read_write/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_read_write/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_read_write/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_read_write/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_read_write/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_read_write/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_read_write/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_read_write/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_read_write/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_read_write/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_read_write/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_read_write/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_read_write/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_read_write/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/02_0tags.gitlab.md b/tests/results/test_namespace_read_write/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_read_write/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_read_write/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.gitlab.md
index 37b892aa..542e3c06 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.gitlab.md
index d563774d..9962c3aa 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.gitlab.md
index ab468bd7..0b9be859 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.gitlab.md
index c3832504..377a4dd0 100644
--- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.gitlab.md
index 9b0f7397..e85efd7a 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.gitlab.md
index 1118a3e7..463acf76 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_read_write/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write/04_5hidden_calculation2.gitlab.md
index 6c9ab054..ee6c3bdd 100644
--- a/tests/results/test_namespace_read_write/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators.gitlab.md b/tests/results/test_namespace_read_write/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_read_write/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_read_write/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_read_write/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_read_write/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_read_write/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_read_write/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_read_write/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_read_write/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_read_write/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_read_write/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_read_write/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_read_write/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_read_write/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_read_write/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_read_write/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_read_write/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_read_write/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_read_write/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 7c2d6ef4..57192f31 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.gitlab.md
index 8a9f13b6..7f6e7b7f 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_read_write/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_read_write/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_read_write/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_read_write/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.gitlab.md
index be2f12d3..81918b41 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_read_write/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 9bc7c294..f82ae542 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 804d48ee..767cee56 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 66b60e20..da122bfe 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
index 3fbe7fd7..9d4ec35c 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_read_write/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_read_write/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_errors/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_errors/00_0version_underscore.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/00_1empty_variable.gitlab.md
index 35467c79..d9674ec3 100644
--- a/tests/results/test_namespace_read_write_errors/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated.gitlab.md
index 22f9733c..5d1d6fa3 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_multi.gitlab.md
index 97a9fd27..382c24f7 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
index be69db60..80124c44 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
index 254a028f..f90bc8b4 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_errors/00_4load_subfolder.gitlab.md
index d089aacb..fab83eb8 100644
--- a/tests/results/test_namespace_read_write_errors/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_errors/00_5load_notype.gitlab.md
index 8579f113..032d6907 100644
--- a/tests/results/test_namespace_read_write_errors/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6boolean.gitlab.md
index 98bc8df5..2e262bbd 100644
--- a/tests/results/test_namespace_read_write_errors/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6boolean_no_mandatory.gitlab.md
index 4de7453e..20850f2e 100644
--- a/tests/results/test_namespace_read_write_errors/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice.gitlab.md
index 8e838a44..64314d12 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice_calculation.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice_link.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice_variable.gitlab.md
index 95189f65..00dde5f0 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice_variable_link.gitlab.md
index b695293a..1f5fcbef 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6choice_variable_link2.gitlab.md
index 29f4536a..2c8bb837 100644
--- a/tests/results/test_namespace_read_write_errors/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6custom.gitlab.md
index 89fc4805..f155c9f3 100644
--- a/tests/results/test_namespace_read_write_errors/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6domainname.gitlab.md
index 99432e19..a4e87846 100644
--- a/tests/results/test_namespace_read_write_errors/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6domainname_params.gitlab.md
index 99432e19..a4e87846 100644
--- a/tests/results/test_namespace_read_write_errors/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6float.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6float.gitlab.md
index 42f7b12a..e7896deb 100644
--- a/tests/results/test_namespace_read_write_errors/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6integer.gitlab.md
index cda70923..1822024c 100644
--- a/tests/results/test_namespace_read_write_errors/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6ip.gitlab.md
index f4f7ccfb..2fc96a46 100644
--- a/tests/results/test_namespace_read_write_errors/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6network.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6network.gitlab.md
index 75630c80..3d09c6e9 100644
--- a/tests/results/test_namespace_read_write_errors/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6number.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6number.gitlab.md
index cda70923..1822024c 100644
--- a/tests/results/test_namespace_read_write_errors/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6port.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6port.gitlab.md
index 165ca888..78af6243 100644
--- a/tests/results/test_namespace_read_write_errors/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6regexp.gitlab.md
index a432e8db..831a87f7 100644
--- a/tests/results/test_namespace_read_write_errors/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6regexp_link.gitlab.md
index 5104de72..27288773 100644
--- a/tests/results/test_namespace_read_write_errors/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6secret.gitlab.md
index fa60c0cf..4a09fbb8 100644
--- a/tests/results/test_namespace_read_write_errors/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6secret_param.gitlab.md
index fe2486de..ac35f922 100644
--- a/tests/results/test_namespace_read_write_errors/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_6string.gitlab.md b/tests/results/test_namespace_read_write_errors/00_6string.gitlab.md
index c685d893..5c014aab 100644
--- a/tests/results/test_namespace_read_write_errors/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7choice_quote.gitlab.md
index d6cb207a..339a35aa 100644
--- a/tests/results/test_namespace_read_write_errors/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7help.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7help.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_errors/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7help_quote.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_errors/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7help_sup.gitlab.md
index 2651c3c9..0e86e102 100644
--- a/tests/results/test_namespace_read_write_errors/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7value_doublequote.gitlab.md
index b6fff871..5562258e 100644
--- a/tests/results/test_namespace_read_write_errors/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7value_doublequote2.gitlab.md
index 933f343b..270494fb 100644
--- a/tests/results/test_namespace_read_write_errors/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7value_doublequote3.gitlab.md
index ac73a5bc..f0b450f2 100644
--- a/tests/results/test_namespace_read_write_errors/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_errors/00_7value_quote.gitlab.md
index cf04f85f..0d27db89 100644
--- a/tests/results/test_namespace_read_write_errors/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_errors/00_8calculation_information.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_errors/00_8calculation_namespace.gitlab.md
index 389504d5..5dad73f5 100644
--- a/tests/results/test_namespace_read_write_errors/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_errors/00_8calculation_param_namespace.gitlab.md
index 389504d5..5dad73f5 100644
--- a/tests/results/test_namespace_read_write_errors/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_8test.gitlab.md b/tests/results/test_namespace_read_write_errors/00_8test.gitlab.md
index 4a00516b..fedb5552 100644
--- a/tests/results/test_namespace_read_write_errors/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9choice_variable_multi.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_errors/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9choice_variables.gitlab.md
index c0e9d8c7..6ef6b666 100644
--- a/tests/results/test_namespace_read_write_errors/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation.gitlab.md
index d33f20c9..c045a318 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_information.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
index 0d37a349..c734770f 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
index 0d37a349..c734770f 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
index bed6cc4b..26dce5cb 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional.gitlab.md
index 6329ede0..306e7dee 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
index 9343dc11..192bb037 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_calculation_param_optional.gitlab.md
index a274e191..6d4ccce7 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable2.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_integer.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9default_number.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_errors/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9extra.gitlab.md
index 6e348336..338ce934 100644
--- a/tests/results/test_namespace_read_write_errors/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9extra_calculation.gitlab.md
index 9fa248ae..2d075ff0 100644
--- a/tests/results/test_namespace_read_write_errors/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_errors/00_9extra_ouside.gitlab.md
index 69121381..842bb8d6 100644
--- a/tests/results/test_namespace_read_write_errors/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6boolean_multi.gitlab.md
index f0ca50a1..12209557 100644
--- a/tests/results/test_namespace_read_write_errors/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6custom_multi.gitlab.md
index 60f5f772..7c7368f5 100644
--- a/tests/results/test_namespace_read_write_errors/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6float_multi.gitlab.md
index e39537b5..d9474645 100644
--- a/tests/results/test_namespace_read_write_errors/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6integer_multi.gitlab.md
index b1644e51..06f8f68e 100644
--- a/tests/results/test_namespace_read_write_errors/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6integer_multi_mandatory.gitlab.md
index b449c8bf..fd23ac7c 100644
--- a/tests/results/test_namespace_read_write_errors/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6string_empty.gitlab.md
index 28c11918..13e28cf7 100644
--- a/tests/results/test_namespace_read_write_errors/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6string_multi.gitlab.md
index 10bcbeac..3e58bf21 100644
--- a/tests/results/test_namespace_read_write_errors/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_errors/01_6string_multi_length.gitlab.md
index 84e240dc..c0850463 100644
--- a/tests/results/test_namespace_read_write_errors/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote.gitlab.md
index 8970650f..c7ebc841 100644
--- a/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote2.gitlab.md
index 440cecd5..a075d140 100644
--- a/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_errors/01_7value_multi_quote.gitlab.md
index 74b19f8b..25cbaac6 100644
--- a/tests/results/test_namespace_read_write_errors/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_8calculation_information_multi.gitlab.md
index 33aee2de..24c7bbd6 100644
--- a/tests/results/test_namespace_read_write_errors/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/01_9choice_variable_multi.gitlab.md
index af913752..70e63fd2 100644
--- a/tests/results/test_namespace_read_write_errors/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/01_9choice_variable_optional.gitlab.md
index 494631c2..7fa06418 100644
--- a/tests/results/test_namespace_read_write_errors/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_errors/02_0tags.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_errors/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_errors/04_0type_param.gitlab.md
index 12af03b4..13042851 100644
--- a/tests/results/test_namespace_read_write_errors/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_errors/04_0type_param_integer.gitlab.md
index 011986cd..27e2ba28 100644
--- a/tests/results/test_namespace_read_write_errors/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write_errors/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated.gitlab.md
index 34eca719..93470fe9 100644
--- a/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
index 29ea2157..8195caf2 100644
--- a/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden.gitlab.md
index 089f0e81..1222fa25 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
index 089f0e81..1222fa25 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
index 92dea6f3..2dc7c319 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
index f772c738..971b2ffe 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
index 9d7fd603..00b4bf04 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
index 8d09c8c4..b8c93bc7 100644
--- a/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation.gitlab.md
index aac31045..4afbf6b0 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
index c3b53b00..b429d025 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_default.gitlab.md
index 73ace7a8..bed6cefd 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_multi.gitlab.md
index dc7f5860..36b521fa 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
index 75a32dc7..5d5e2660 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable.gitlab.md
index bb82ee30..036ca66a 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
index 6e26bfa1..16a8095a 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
index 6e26bfa1..16a8095a 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
index 8c3e095c..b1bd5ef2 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
index 1a930d7d..d3153648 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
index bb82ee30..036ca66a 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
index 0e6d6269..0f374012 100644
--- a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation.gitlab.md
index cde02485..d4fcee1e 100644
--- a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation2.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation_default_calculation.gitlab.md
index 73ace7a8..bed6cefd 100644
--- a/tests/results/test_namespace_read_write_errors/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators.gitlab.md
index bd389db8..7fbae4dd 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_differ.gitlab.md
index 604dbe50..9f3f56d4 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_multi.gitlab.md
index 283c6e18..96421f82 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_multi2.gitlab.md
index 283c6e18..96421f82 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_multi3.gitlab.md
index 26cbf98b..49913018 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_warnings.gitlab.md
index 3e6342f4..3eb423d3 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5validators_warnings_all.gitlab.md
index 3e6342f4..3eb423d3 100644
--- a/tests/results/test_namespace_read_write_errors/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_errors/05_0multi_not_uniq.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_errors/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_errors/05_0multi_uniq.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_errors/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_errors/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write_errors/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_errors/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_errors/16_0redefine_description.gitlab.md
index fd3cb256..23caac87 100644
--- a/tests/results/test_namespace_read_write_errors/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_errors/16_3family_empty_at_ends.gitlab.md
index 287acfc6..7a0bbbe0 100644
--- a/tests/results/test_namespace_read_write_errors/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5exists_nonexists.gitlab.md
index 5043e97e..0396ff47 100644
--- a/tests/results/test_namespace_read_write_errors/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_calculation.gitlab.md
index d02ea7bf..f4f4f2b1 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_choice.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_default.gitlab.md
index d02ea7bf..f4f4f2b1 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_default_calculation.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_family.gitlab.md
index de3a5cdb..aeea1458 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_help.gitlab.md
index a7dd6f20..e60ab676 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_multi.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
index acd8fcb5..005b8055 100644
--- a/tests/results/test_namespace_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_errors/16_5test_redefine.gitlab.md
index 171306e7..546018d5 100644
--- a/tests/results/test_namespace_read_write_errors/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_errors/16_6choice_redefine.gitlab.md
index 46ee9bd0..5d94f0d8 100644
--- a/tests/results/test_namespace_read_write_errors/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_errors/16_6exists_redefine_family.gitlab.md
index 5379e875..27d844ee 100644
--- a/tests/results/test_namespace_read_write_errors/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_errors/16exists_exists.gitlab.md
index 4b577497..65db59e9 100644
--- a/tests/results/test_namespace_read_write_errors/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0family_append.gitlab.md
index 0a7eda6d..299b487c 100644
--- a/tests/results/test_namespace_read_write_errors/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0multi_family.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_errors/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0multi_family_basic.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_errors/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0multi_family_expert.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_errors/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0multi_family_order.gitlab.md
index 6651740c..b830163e 100644
--- a/tests/results/test_namespace_read_write_errors/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_errors/20_0validators_differ_redefine.gitlab.md
index 466a3496..2612de30 100644
--- a/tests/results/test_namespace_read_write_errors/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
index 61eadc61..8d9659b7 100644
--- a/tests/results/test_namespace_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/20_2family_looks_like_variable.gitlab.md
index a22f6824..5f59e119 100644
--- a/tests/results/test_namespace_read_write_errors/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_errors/20_7help_family.gitlab.md
index e3c3540d..0fb4feb0 100644
--- a/tests/results/test_namespace_read_write_errors/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_errors/20_9default_information_parent.gitlab.md
index 1872365f..90ee9f27 100644
--- a/tests/results/test_namespace_read_write_errors/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition.gitlab.md
index 6ee0b9ca..4c7a09cd 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_boolean.gitlab.md
index 44b3b873..37591f3a 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
index 2739f836..2af5d77a 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 1a254b77..6a67d38e 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_with_variable.gitlab.md
index d05ab007..189e3f9c 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
index 8fb36787..c86a1c0b 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition.gitlab.md
index acd8fcb5..005b8055 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
index 1f6535ce..5b7db7f7 100644
--- a/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/24_7validators_variable_optional.gitlab.md
index 98213713..1011f9e8 100644
--- a/tests/results/test_namespace_read_write_errors/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_diff_name.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti.gitlab.md
index b12b4401..3bb5a313 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
index 8c1ccfd9..4494a0f4 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_value.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_leader_follower.gitlab.md
index 63bfde2c..95555aed 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
index ed509619..dbc16929 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_errors/40_0leadership_reduce.gitlab.md
index 46d6ee12..b5d0dd03 100644
--- a/tests/results/test_namespace_read_write_errors/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_errors/40_1leadership_append_follower.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index.gitlab.md
index 7087695f..b763a276 100644
--- a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
index 7087695f..b763a276 100644
--- a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_param_index.gitlab.md
index 4bdf578a..95f7fb13 100644
--- a/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/40_2leadership_leader_calculation.gitlab.md
index ae4c2425..14053e6e 100644
--- a/tests/results/test_namespace_read_write_errors/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_boolean.gitlab.md
index 089e26ca..dadaa59e 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_boolean_return_none.gitlab.md
index 33414867..71fe38d4 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_integer.gitlab.md
index 73286a3d..9c65a606 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable.gitlab.md
index 560f490e..b0e1e923 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
index 68dff93a..b8330d08 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
index 88c58424..c3337e56 100644
--- a/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index f581ae0b..c8b75cc7 100644
--- a/tests/results/test_namespace_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
index 0cf769f0..70a5a0d6 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
index 0cf769f0..70a5a0d6 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 123bb33a..5c900aea 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
index 8e0b870b..c05d6b2e 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
index 8f4909eb..fc3ee68a 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
index 8364059f..e0f08c69 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
index 272b3b9b..57104030 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable.gitlab.md
index 6a174b10..e98bf62d 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 9c847a6d..f858c1a0 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index b642f0c3..298a1583 100644
--- a/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_errors/41_0choice_leader.gitlab.md
index f58bf381..675119f0 100644
--- a/tests/results/test_namespace_read_write_errors/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower.gitlab.md
index 88e29bef..4f748c8b 100644
--- a/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
index 9e632d33..4150a72b 100644
--- a/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
index a50bfe1a..5cb8e630 100644
--- a/tests/results/test_namespace_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_errors/44_9calculated_default_leadership_leader.gitlab.md
index 09014810..aa00c261 100644
--- a/tests/results/test_namespace_read_write_errors/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic.gitlab.md
index 4fc35219..5c3704a6 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0.gitlab.md
index 8c0d02fe..4c633ef0 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type.gitlab.md
index 49a1925e..7fef176e 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1.gitlab.md
index 4fc35219..5c3704a6 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
index 6a5af205..71ab2df8 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 30d13556..ac6ff2b5 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_number.gitlab.md
index a2c6c43d..67bf13aa 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description.gitlab.md
index 1d523116..d10bc6e3 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
index 7c0f369f..33b7aed4 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_static.gitlab.md
index 6996babd..cb9cd952 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_test.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
index c1b567ab..5bccb2b7 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
index 99e7ab4e..c808f094 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
index 075f2372..d91f26c6 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_errors/60_0family_mode.gitlab.md
index ee4ff500..91a68fd6 100644
--- a/tests/results/test_namespace_read_write_errors/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_errors/60_1family_dynamic_jinja.gitlab.md
index 819cdaeb..6c561ced 100644
--- a/tests/results/test_namespace_read_write_errors/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 5ec8dbc1..4a26af17 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 988ee39b..5e96dde0 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 56f19215..a59dae1a 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 55731f4b..d83fb884 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
index 38148d1f..2accd7b0 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
index 47a34add..1f22465c 100644
--- a/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2.gitlab.md
index 03aa3722..8fe4a9c4 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2_empty.gitlab.md
index 06634b1f..a058d468 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
index e01fc138..5ae8c81d 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix.gitlab.md
index 344f45af..7fbfbe0f 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
index cc34e8ab..e02b573d 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index a5fc0bd3..ba553be3 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 13bd5b2e..9660f4c6 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 307c2340..6d582516 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index d8038bf4..6c3aeee5 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index a4580945..46ce15b7 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
index 43dfcc35..af74428c 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index d170dc85..7c911aec 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
index 344f45af..7fbfbe0f 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 1e6be64b..ab4dcf6d 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 5d52b879..3d7d4380 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
index fb315eb8..7fa26fed 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix.gitlab.md
index 2248c29b..29990d8b 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2.gitlab.md
index 8beda1c3..b9be25cd 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 97264b64..6c218dfd 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index 4e76239b..f58e2142 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 93f81464..c96966b0 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index 3e5bdc21..84a8c9b4 100644
--- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside.gitlab.md
index 86a32a38..bff28cfe 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership.gitlab.md
index 04f3728c..2cf12118 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic.gitlab.md
index d5da281a..e45336ec 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index d5da281a..e45336ec 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 7aa0c156..22ad4338 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index d170dc85..7c911aec 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 1818c88c..1a23eb45 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
index bb234a23..3d0ca5e6 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index bb234a23..3d0ca5e6 100644
--- a/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_errors/60_9extra_dynamic.gitlab.md
index 230e4e12..2e07acd6 100644
--- a/tests/results/test_namespace_read_write_errors/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_errors/60_9extra_dynamic_extra.gitlab.md
index afb0975a..54e03e32 100644
--- a/tests/results/test_namespace_read_write_errors/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
index 4dbef27f..2b94368d 100644
--- a/tests/results/test_namespace_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_errors/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_errors/68_0family_leadership_mode.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_errors/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_errors/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
index 220b0ea1..2d172f54 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md
index 14f5ef23..b1021e33 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md
index a6119cf2..e8a475b2 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
index 37b892aa..542e3c06 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
index d563774d..9962c3aa 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
index ab468bd7..0b9be859 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
index c3832504..377a4dd0 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
index 9b0f7397..e85efd7a 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
index 1118a3e7..463acf76 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md
index 6c9ab054..ee6c3bdd 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 7c2d6ef4..57192f31 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
index 8a9f13b6..7f6e7b7f 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
index be2f12d3..81918b41 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 9bc7c294..f82ae542 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 804d48ee..767cee56 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 66b60e20..da122bfe 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
index 3fbe7fd7..9d4ec35c 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
index 220b0ea1..2d172f54 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md
index d7726194..5c4be39d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md
index c34b13ee..711794cb 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
index 37b892aa..542e3c06 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
index d563774d..9962c3aa 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
index ab468bd7..0b9be859 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
index c3832504..377a4dd0 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
index 9b0f7397..e85efd7a 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 1118a3e7..463acf76 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md
index 6c9ab054..ee6c3bdd 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 7c2d6ef4..57192f31 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
index 8a9f13b6..7f6e7b7f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
index be2f12d3..81918b41 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 9bc7c294..f82ae542 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 804d48ee..767cee56 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 66b60e20..da122bfe 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 3fbe7fd7..9d4ec35c 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_read_write_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
index 220b0ea1..2d172f54 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_read_write_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6float.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6network.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6number.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6port.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6secret.gitlab.md
index d7726194..5c4be39d 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6secret_param.gitlab.md
index c34b13ee..711794cb 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_6string.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_read_write_secrets/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_7help.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_read_write_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_secrets/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_read_write_secrets/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_8test.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_read_write_secrets/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_secrets/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_read_write_secrets/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_read_write_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_secrets/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_read_write_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_read_write_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_read_write_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
index 37b892aa..542e3c06 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
index d563774d..9962c3aa 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
index ab468bd7..0b9be859 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
index c3832504..377a4dd0 100644
--- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
index 9b0f7397..e85efd7a 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 1118a3e7..463acf76 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.gitlab.md
index 6c9ab054..ee6c3bdd 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_read_write_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_read_write_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_read_write_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_secrets/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_read_write_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_read_write_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 7c2d6ef4..57192f31 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.gitlab.md
index 8a9f13b6..7f6e7b7f 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_secrets/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_read_write_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
index be2f12d3..81918b41 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_read_write_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 9bc7c294..f82ae542 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 804d48ee..767cee56 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 66b60e20..da122bfe 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 3fbe7fd7..9d4ec35c 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_0version_underscore.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_1empty_variable.gitlab.md
index 35467c79..d9674ec3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated.gitlab.md
index 22f9733c..5d1d6fa3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
index 97a9fd27..382c24f7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
index be69db60..80124c44 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
index 254a028f..f90bc8b4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_4load_subfolder.gitlab.md
index d089aacb..fab83eb8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_5load_notype.gitlab.md
index 8579f113..032d6907 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6boolean.gitlab.md
index 98bc8df5..2e262bbd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
index 4de7453e..20850f2e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice.gitlab.md
index 8e838a44..64314d12 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_calculation.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_link.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable.gitlab.md
index 95189f65..00dde5f0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
index b695293a..1f5fcbef 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
index 29f4536a..2c8bb837 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6custom.gitlab.md
index 89fc4805..f155c9f3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6domainname.gitlab.md
index 99432e19..a4e87846 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6domainname_params.gitlab.md
index 99432e19..a4e87846 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6float.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6float.gitlab.md
index 42f7b12a..e7896deb 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6float.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6integer.gitlab.md
index cda70923..1822024c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6ip.gitlab.md
index f4f7ccfb..2fc96a46 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6network.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6network.gitlab.md
index 75630c80..3d09c6e9 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6network.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6number.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6number.gitlab.md
index cda70923..1822024c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6port.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6port.gitlab.md
index 165ca888..78af6243 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6port.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6regexp.gitlab.md
index a432e8db..831a87f7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6regexp_link.gitlab.md
index 5104de72..27288773 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6secret.gitlab.md
index 26629137..d4aefca0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6secret_param.gitlab.md
index a17b2a95..ad8d5ef3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_6string.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_6string.gitlab.md
index c685d893..5c014aab 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_6string.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7choice_quote.gitlab.md
index d6cb207a..339a35aa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7help.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7help.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7help.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7help_quote.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7help_sup.gitlab.md
index 2651c3c9..0e86e102 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote.gitlab.md
index b6fff871..5562258e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
index 933f343b..270494fb 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
index ac73a5bc..f0b450f2 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_7value_quote.gitlab.md
index cf04f85f..0d27db89 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_information.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_namespace.gitlab.md
index 389504d5..5dad73f5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_param_namespace.gitlab.md
index 389504d5..5dad73f5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_8test.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_8test.gitlab.md
index 4a00516b..fedb5552 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_8test.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
index 5ec9b5b9..293ff1d0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variables.gitlab.md
index c0e9d8c7..6ef6b666 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation.gitlab.md
index d33f20c9..c045a318 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
index 0d37a349..c734770f 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
index 0d37a349..c734770f 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
index bed6cc4b..26dce5cb 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
index 6329ede0..306e7dee 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
index 9343dc11..192bb037 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
index a274e191..6d4ccce7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
index 53427e5d..1f5db596 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_integer.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9default_number.gitlab.md
index a001f153..dd4a4c44 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9extra.gitlab.md
index 6e348336..338ce934 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9extra_calculation.gitlab.md
index 9fa248ae..2d075ff0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/00_9extra_ouside.gitlab.md
index 69121381..842bb8d6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6boolean_multi.gitlab.md
index f0ca50a1..12209557 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6custom_multi.gitlab.md
index 60f5f772..7c7368f5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6float_multi.gitlab.md
index e39537b5..d9474645 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi.gitlab.md
index b1644e51..06f8f68e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
index b449c8bf..fd23ac7c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6string_empty.gitlab.md
index 28c11918..13e28cf7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi.gitlab.md
index 10bcbeac..3e58bf21 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi_length.gitlab.md
index 84e240dc..c0850463 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
index 8970650f..c7ebc841 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
index 440cecd5..a075d140 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
index 74b19f8b..25cbaac6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
index 33aee2de..24c7bbd6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
index af913752..70e63fd2 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
index 494631c2..7fa06418 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/02_0tags.gitlab.md
index 5bab49d9..74dc0763 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_0type_param.gitlab.md
index 12af03b4..13042851 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_0type_param_integer.gitlab.md
index 011986cd..27e2ba28 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
index 34eca719..93470fe9 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
index 29ea2157..8195caf2 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
index 089f0e81..1222fa25 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
index 089f0e81..1222fa25 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
index 92dea6f3..2dc7c319 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
index f772c738..971b2ffe 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
index 9d7fd603..00b4bf04 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
index 8d09c8c4..b8c93bc7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation.gitlab.md
index aac31045..4afbf6b0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
index c3b53b00..b429d025 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_default.gitlab.md
index 73ace7a8..bed6cefd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_multi.gitlab.md
index dc7f5860..36b521fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
index 75a32dc7..5d5e2660 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
index bb82ee30..036ca66a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
index 6e26bfa1..16a8095a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
index 6e26bfa1..16a8095a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
index 8c3e095c..b1bd5ef2 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
index 1a930d7d..d3153648 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
index bb82ee30..036ca66a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
index 0e6d6269..0f374012 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation.gitlab.md
index cde02485..d4fcee1e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation2.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation_default_calculation.gitlab.md
index 73ace7a8..bed6cefd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators.gitlab.md
index bd389db8..7fbae4dd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_differ.gitlab.md
index 604dbe50..9f3f56d4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi.gitlab.md
index 283c6e18..96421f82 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi2.gitlab.md
index 283c6e18..96421f82 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi3.gitlab.md
index 26cbf98b..49913018 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings.gitlab.md
index 3e6342f4..3eb423d3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
index 3e6342f4..3eb423d3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/05_0multi_uniq.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_0redefine_description.gitlab.md
index fd3cb256..23caac87 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
index 287acfc6..7a0bbbe0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
index 5043e97e..0396ff47 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
index d02ea7bf..f4f4f2b1 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_choice.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default.gitlab.md
index d02ea7bf..f4f4f2b1 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
index 9226f473..daee96ca 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_family.gitlab.md
index de3a5cdb..aeea1458 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_help.gitlab.md
index a7dd6f20..e60ab676 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_multi.gitlab.md
index c57fc775..6e25f0de 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
index acd8fcb5..005b8055 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_5test_redefine.gitlab.md
index 171306e7..546018d5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_6choice_redefine.gitlab.md
index 46ee9bd0..5d94f0d8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
index 5379e875..27d844ee 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/16exists_exists.gitlab.md
index 4b577497..65db59e9 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0family_append.gitlab.md
index 0a7eda6d..299b487c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
index cb0185de..65f53a03 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_order.gitlab.md
index 6651740c..b830163e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
index 466a3496..2612de30 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
index 61eadc61..8d9659b7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
index a22f6824..5f59e119 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_7help_family.gitlab.md
index e3c3540d..0fb4feb0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/20_9default_information_parent.gitlab.md
index 1872365f..90ee9f27 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition.gitlab.md
index 6ee0b9ca..4c7a09cd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_boolean.gitlab.md
index 44b3b873..37591f3a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
index 2739f836..2af5d77a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 1a254b77..6a67d38e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_with_variable.gitlab.md
index d05ab007..189e3f9c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
index 8fb36787..c86a1c0b 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
index acd8fcb5..005b8055 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
index 1f6535ce..5b7db7f7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
index 98213713..1011f9e8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti.gitlab.md
index b12b4401..3bb5a313 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
index 8c1ccfd9..4494a0f4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
index 63bfde2c..95555aed 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
index ed509619..dbc16929 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
index 46d6ee12..b5d0dd03 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
index 7087695f..b763a276 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
index 7087695f..b763a276 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_param_index.gitlab.md
index 4bdf578a..95f7fb13 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_leader_calculation.gitlab.md
index ae4c2425..14053e6e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
index 089e26ca..dadaa59e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean_return_none.gitlab.md
index 33414867..71fe38d4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_integer.gitlab.md
index 73286a3d..9c65a606 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
index 560f490e..b0e1e923 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
index 68dff93a..b8330d08 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
index 88c58424..c3337e56 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index f581ae0b..c8b75cc7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
index 0cf769f0..70a5a0d6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
index 0cf769f0..70a5a0d6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 123bb33a..5c900aea 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
index 8e0b870b..c05d6b2e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
index 8f4909eb..fc3ee68a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
index 8364059f..e0f08c69 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
index 272b3b9b..57104030 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
index 6a174b10..e98bf62d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 9c847a6d..f858c1a0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index b642f0c3..298a1583 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/41_0choice_leader.gitlab.md
index f58bf381..675119f0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower.gitlab.md
index 88e29bef..4f748c8b 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
index 9e632d33..4150a72b 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
index 4e49036d..a55beee8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
index 8c23dcfd..f01aa5bf 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
index a50bfe1a..5cb8e630 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/44_9calculated_default_leadership_leader.gitlab.md
index 09014810..aa00c261 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic.gitlab.md
index 4fc35219..5c3704a6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0.gitlab.md
index 8c0d02fe..4c633ef0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type.gitlab.md
index 49a1925e..7fef176e 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
index 4fc35219..5c3704a6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
index 6a5af205..71ab2df8 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 30d13556..ac6ff2b5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_number.gitlab.md
index a2c6c43d..67bf13aa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
index 1d523116..d10bc6e3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
index 7c0f369f..33b7aed4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
index 6996babd..cb9cd952 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
index c1b567ab..5bccb2b7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
index 99e7ab4e..c808f094 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
index 075f2372..d91f26c6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4889a12..b824d20c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_0family_mode.gitlab.md
index ee4ff500..91a68fd6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
index 819cdaeb..6c561ced 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 5ec8dbc1..4a26af17 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 988ee39b..5e96dde0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 56f19215..a59dae1a 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 55731f4b..d83fb884 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
index 38148d1f..2accd7b0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
index 47a34add..1f22465c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2.gitlab.md
index 03aa3722..8fe4a9c4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2_empty.gitlab.md
index 06634b1f..a058d468 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
index e01fc138..5ae8c81d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix.gitlab.md
index 344f45af..7fbfbe0f 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
index cc34e8ab..e02b573d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index a5fc0bd3..ba553be3 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 13bd5b2e..9660f4c6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index 307c2340..6d582516 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index d8038bf4..6c3aeee5 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index a4580945..46ce15b7 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
index 43dfcc35..af74428c 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index d170dc85..7c911aec 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
index 344f45af..7fbfbe0f 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 1e6be64b..ab4dcf6d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 5d52b879..3d7d4380 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
index ab710068..864c42af 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
index fb315eb8..7fa26fed 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix.gitlab.md
index 2248c29b..29990d8b 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2.gitlab.md
index 8beda1c3..b9be25cd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 97264b64..6c218dfd 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 110aae62..a50bfbff 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index 4e76239b..f58e2142 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index 31034baa..83d01488 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 93f81464..c96966b0 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index 3e5bdc21..84a8c9b4 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside.gitlab.md
index 86a32a38..bff28cfe 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
index 04f3728c..2cf12118 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
index f3b6f431..f80a03fa 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic.gitlab.md
index d5da281a..e45336ec 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index d5da281a..e45336ec 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 7aa0c156..22ad4338 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index d170dc85..7c911aec 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 1818c88c..1a23eb45 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
index bb234a23..3d0ca5e6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index bb234a23..3d0ca5e6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic.gitlab.md
index 230e4e12..2e07acd6 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic_extra.gitlab.md
index afb0975a..54e03e32 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
index 4dbef27f..2b94368d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
index 1f9a2484..ff84ab6d 100644
--- a/tests/results/test_namespace_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_secrets/00_0version_underscore.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_secrets/00_1empty_variable.gitlab.md
index a37d9682..051ed2fc 100644
--- a/tests/results/test_namespace_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated.gitlab.md
index 6d5f8631..4af4da0b 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_multi.gitlab.md
index a2e9449e..7009c2a6 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.gitlab.md
index 8d473aa1..a7790e0f 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_variable.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_variable_description.gitlab.md
index 080826c4..126854d5 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index 78aec078..cd72a4fe 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.gitlab.md
index d1c30f4b..b78e1f90 100644
--- a/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_secrets/00_4load_subfolder.gitlab.md
index 0c0a5d42..c85a7121 100644
--- a/tests/results/test_namespace_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_secrets/00_5load_notype.gitlab.md
index c90eef1d..f0a3cad7 100644
--- a/tests/results/test_namespace_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_secrets/00_6boolean.gitlab.md
index 87cdd7df..6533c906 100644
--- a/tests/results/test_namespace_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.gitlab.md
index 88d12d41..89a8e604 100644
--- a/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_secrets/00_6choice.gitlab.md
index 45bad31c..8bd99947 100644
--- a/tests/results/test_namespace_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_secrets/00_6choice_calculation.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_secrets/00_6choice_link.gitlab.md
index 1b4b2d0b..eeee4d32 100644
--- a/tests/results/test_namespace_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_secrets/00_6choice_variable.gitlab.md
index 59d12bbf..5f9b3c88 100644
--- a/tests/results/test_namespace_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_secrets/00_6choice_variable_link.gitlab.md
index 66b29d2e..1ef70cf3 100644
--- a/tests/results/test_namespace_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_secrets/00_6choice_variable_link2.gitlab.md
index 238d67fc..b7e66243 100644
--- a/tests/results/test_namespace_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_secrets/00_6custom.gitlab.md
index 90a627ef..fe3c551b 100644
--- a/tests/results/test_namespace_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_secrets/00_6domainname.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_secrets/00_6domainname_params.gitlab.md
index 6a4cb345..9a8461e7 100644
--- a/tests/results/test_namespace_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6float.gitlab.md b/tests/results/test_namespace_secrets/00_6float.gitlab.md
index 092e2252..57788b1f 100644
--- a/tests/results/test_namespace_secrets/00_6float.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_secrets/00_6integer.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_secrets/00_6ip.gitlab.md
index b83e8f4c..a518b28b 100644
--- a/tests/results/test_namespace_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6network.gitlab.md b/tests/results/test_namespace_secrets/00_6network.gitlab.md
index d551676c..b144318d 100644
--- a/tests/results/test_namespace_secrets/00_6network.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6number.gitlab.md b/tests/results/test_namespace_secrets/00_6number.gitlab.md
index 685fc77b..dc444932 100644
--- a/tests/results/test_namespace_secrets/00_6number.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6port.gitlab.md b/tests/results/test_namespace_secrets/00_6port.gitlab.md
index 0e0ed370..d7f07ea8 100644
--- a/tests/results/test_namespace_secrets/00_6port.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_secrets/00_6regexp.gitlab.md
index 049dd3b0..5704655d 100644
--- a/tests/results/test_namespace_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_secrets/00_6regexp_link.gitlab.md
index 0b67a816..545986ac 100644
--- a/tests/results/test_namespace_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_secrets/00_6secret.gitlab.md
index d7726194..5c4be39d 100644
--- a/tests/results/test_namespace_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_secrets/00_6secret_param.gitlab.md
index c34b13ee..711794cb 100644
--- a/tests/results/test_namespace_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_6string.gitlab.md b/tests/results/test_namespace_secrets/00_6string.gitlab.md
index 07e3cb74..18c22e86 100644
--- a/tests/results/test_namespace_secrets/00_6string.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_secrets/00_7choice_quote.gitlab.md
index 412577bf..164dc2f3 100644
--- a/tests/results/test_namespace_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_7help.gitlab.md b/tests/results/test_namespace_secrets/00_7help.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_secrets/00_7help.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_secrets/00_7help_quote.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_secrets/00_7help_sup.gitlab.md
index 0e11f2c6..6970f741 100644
--- a/tests/results/test_namespace_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_secrets/00_7value_doublequote.gitlab.md
index 639fe181..e0f4c12e 100644
--- a/tests/results/test_namespace_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_secrets/00_7value_doublequote2.gitlab.md
index 4fa121bc..017dc82a 100644
--- a/tests/results/test_namespace_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_secrets/00_7value_doublequote3.gitlab.md
index 7adadd4e..976a112c 100644
--- a/tests/results/test_namespace_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_secrets/00_7value_quote.gitlab.md
index f574de96..cf55967f 100644
--- a/tests/results/test_namespace_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_secrets/00_8calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_secrets/00_8calculation_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_secrets/00_8calculation_namespace.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_8calculation_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_secrets/00_8calculation_param_namespace.gitlab.md
index a50ec165..fbebec5b 100644
--- a/tests/results/test_namespace_secrets/00_8calculation_param_namespace.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_8calculation_param_namespace.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_8test.gitlab.md b/tests/results/test_namespace_secrets/00_8test.gitlab.md
index 5b9afff3..4f1841c3 100644
--- a/tests/results/test_namespace_secrets/00_8test.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_secrets/00_9choice_variable_multi.gitlab.md
index 79486249..256b922c 100644
--- a/tests/results/test_namespace_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_secrets/00_9choice_variables.gitlab.md
index 62ca9276..3a471c51 100644
--- a/tests/results/test_namespace_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation.gitlab.md
index 9ba9088d..ec74a521 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_information.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 73afba47..9ab357f4 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index 0a252ccf..58802191 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_optional.gitlab.md
index bf587160..2e9bf3a2 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.gitlab.md
index 45d46bb6..c0a03445 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.gitlab.md
index cb3dfeaa..706cc096 100644
--- a/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_secrets/00_9default_information_other_variable.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_secrets/00_9default_information_other_variable2.gitlab.md
index c941cf58..6961a9f5 100644
--- a/tests/results/test_namespace_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_secrets/00_9default_integer.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_secrets/00_9default_number.gitlab.md
index fe83156c..02f7a3c4 100644
--- a/tests/results/test_namespace_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_secrets/00_9extra.gitlab.md
index 2614b220..bedf0b27 100644
--- a/tests/results/test_namespace_secrets/00_9extra.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_secrets/00_9extra_calculation.gitlab.md
index 74bb898b..969b762a 100644
--- a/tests/results/test_namespace_secrets/00_9extra_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9extra_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_secrets/00_9extra_ouside.gitlab.md
index 8b1b431a..2dd3e108 100644
--- a/tests/results/test_namespace_secrets/00_9extra_ouside.gitlab.md
+++ b/tests/results/test_namespace_secrets/00_9extra_ouside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_secrets/01_6boolean_multi.gitlab.md
index b1b4d269..f31a192b 100644
--- a/tests/results/test_namespace_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_secrets/01_6custom_multi.gitlab.md
index 8f7e3c3d..db7b8e92 100644
--- a/tests/results/test_namespace_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_secrets/01_6float_multi.gitlab.md
index 95ee22e3..34a87ff0 100644
--- a/tests/results/test_namespace_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_secrets/01_6integer_multi.gitlab.md
index 708aa5bb..78d40c73 100644
--- a/tests/results/test_namespace_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_secrets/01_6integer_multi_mandatory.gitlab.md
index cfe367e5..8d88b3fc 100644
--- a/tests/results/test_namespace_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_secrets/01_6string_empty.gitlab.md
index d9f38e95..66afe468 100644
--- a/tests/results/test_namespace_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_secrets/01_6string_multi.gitlab.md
index df5ac9a1..7899f266 100644
--- a/tests/results/test_namespace_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_secrets/01_6string_multi_length.gitlab.md
index 2081da6e..1ec636a1 100644
--- a/tests/results/test_namespace_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_secrets/01_7value_multi_doublequote.gitlab.md
index 6279cf3e..d5412f7e 100644
--- a/tests/results/test_namespace_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.gitlab.md
index 3c45467b..3329a479 100644
--- a/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_secrets/01_7value_multi_quote.gitlab.md
index 6569398f..0e9ab71e 100644
--- a/tests/results/test_namespace_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_secrets/01_8calculation_information_multi.gitlab.md
index 55ae044d..123efec3 100644
--- a/tests/results/test_namespace_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_secrets/01_9choice_variable_multi.gitlab.md
index 7a98a9a8..c482865f 100644
--- a/tests/results/test_namespace_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_secrets/01_9choice_variable_optional.gitlab.md
index 5685268c..adccf479 100644
--- a/tests/results/test_namespace_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_secrets/02_0tags.gitlab.md
index 10ce253c..aee7f423 100644
--- a/tests/results/test_namespace_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_namespace_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_secrets/04_0type_param.gitlab.md
index d54033dd..d4cc5b6b 100644
--- a/tests/results/test_namespace_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_secrets/04_0type_param_integer.gitlab.md
index ce80ea0f..7d411582 100644
--- a/tests/results/test_namespace_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_secrets/04_1auto_save.gitlab.md
index b67f7542..95143d12 100644
--- a/tests/results/test_namespace_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.gitlab.md
index a84d5232..a1d500cc 100644
--- a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index f8464743..c521a4ac 100644
--- a/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.gitlab.md
index ebddd8fe..f6de21d8 100644
--- a/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.gitlab.md
index a2fb399b..70e19175 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.gitlab.md
index 62372d03..330ef892 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.gitlab.md
index 2c32e5cd..aec396d2 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.gitlab.md
index e3b5fa91..c54c27f2 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.gitlab.md
index 60a5a6f6..5593673c 100644
--- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation.gitlab.md
index a5527e16..d80d751f 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_boolean.gitlab.md
index 3f5cd3b3..bd4cdb0c 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_default.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_default.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_multi.gitlab.md
index 193be389..e9ab5263 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.gitlab.md
index 6aa87f45..6a8fc117 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 4ab3e6a4..d10e7641 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable10.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.gitlab.md
index 8de2b59b..9a20cd8c 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.gitlab.md
index 05ec7c5f..040e55c5 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.gitlab.md
index 21a4701e..b8fe142e 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.gitlab.md
index 763f1eb8..142bddac 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable6.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable7.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.gitlab.md
index 80b2a457..d36a88ce 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable9.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index b43cca79..8f5853e6 100644
--- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_secrets/04_5hidden_calculation.gitlab.md
index c76411e1..47305282 100644
--- a/tests/results/test_namespace_secrets/04_5hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_secrets/04_5hidden_calculation2.gitlab.md
index b1d2cd97..99f7bf44 100644
--- a/tests/results/test_namespace_secrets/04_5hidden_calculation2.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5hidden_calculation2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.gitlab.md
index 7b50db91..86de39ef 100644
--- a/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5hidden_calculation_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_secrets/04_5validators.gitlab.md
index 6297b0a7..f24cbf67 100644
--- a/tests/results/test_namespace_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_differ.gitlab.md
index 2f8a37ab..a1f104b2 100644
--- a/tests/results/test_namespace_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_multi.gitlab.md
index c042a022..b7ded130 100644
--- a/tests/results/test_namespace_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_multi2.gitlab.md
index 051fe395..111a99a3 100644
--- a/tests/results/test_namespace_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_multi3.gitlab.md
index 369b6b54..3bf4b4e7 100644
--- a/tests/results/test_namespace_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_warnings.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_secrets/04_5validators_warnings_all.gitlab.md
index 9c1808c1..c6ee8f57 100644
--- a/tests/results/test_namespace_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_namespace_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_secrets/05_0multi_not_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_namespace_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_secrets/05_0multi_uniq.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_namespace_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_secrets/12_1auto_save_expert.gitlab.md
index 9fc7aea2..22ce4014 100644
--- a/tests/results/test_namespace_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_namespace_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_secrets/16_0redefine_description.gitlab.md
index eb83a989..c3c0438b 100644
--- a/tests/results/test_namespace_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_secrets/16_3family_empty_at_ends.gitlab.md
index 8a136b0f..39fbfc7b 100644
--- a/tests/results/test_namespace_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_secrets/16_5exists_nonexists.gitlab.md
index 5b140b72..e472c78b 100644
--- a/tests/results/test_namespace_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_secrets/16_5exists_redefine.gitlab.md
index 2cc2bd54..f10ec377 100644
--- a/tests/results/test_namespace_secrets/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_calculation.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_choice.gitlab.md
index 88d3a87b..b7d4859c 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_default.gitlab.md
index 3e39fc8a..10ff3523 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_default_calculation.gitlab.md
index 5c69c915..33ae5a9e 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_family.gitlab.md
index 2fafee42..a60fff6f 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_help.gitlab.md
index 9864db7a..d8591bfd 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_hidden.gitlab.md
index 1b5f0a40..d142999b 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_multi.gitlab.md
index 58aa432d..aa52a04d 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_secrets/16_5test_redefine.gitlab.md
index 5b48d5de..26dcf926 100644
--- a/tests/results/test_namespace_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_secrets/16_6choice_redefine.gitlab.md
index b8d2004a..06fd7566 100644
--- a/tests/results/test_namespace_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_secrets/16_6exists_redefine_family.gitlab.md
index e55695d5..e827536d 100644
--- a/tests/results/test_namespace_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_secrets/16exists_exists.gitlab.md
index 450b5ce7..774d6629 100644
--- a/tests/results/test_namespace_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_namespace_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_secrets/17_5redefine_leadership.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_secrets/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_namespace_secrets/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_secrets/20_0family_append.gitlab.md
index 1231aa77..fc5474b7 100644
--- a/tests/results/test_namespace_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_secrets/20_0multi_family.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_secrets/20_0multi_family_basic.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_secrets/20_0multi_family_expert.gitlab.md
index 070d74e3..b3792224 100644
--- a/tests/results/test_namespace_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_secrets/20_0multi_family_order.gitlab.md
index cb338f69..6c5a227c 100644
--- a/tests/results/test_namespace_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_secrets/20_0validators_differ_redefine.gitlab.md
index f231b7ee..d84c9ecd 100644
--- a/tests/results/test_namespace_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_secrets/20_2family_looks_like_dynamic.gitlab.md
index b5eb6657..5393db7b 100644
--- a/tests/results/test_namespace_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_secrets/20_2family_looks_like_variable.gitlab.md
index 544009c6..6e51915f 100644
--- a/tests/results/test_namespace_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_secrets/20_7help_family.gitlab.md
index cf5369af..c938cf53 100644
--- a/tests/results/test_namespace_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_secrets/20_9default_information_parent.gitlab.md
index 923b082e..54214b87 100644
--- a/tests/results/test_namespace_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_namespace_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_condition.gitlab.md
index 91eb04bd..eb17e72c 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_condition.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.gitlab.md
index 3153e9be..4e7aa268 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 230c9a8a..f2460814 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index d287142a..0636c3f5 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.gitlab.md
index c2e0a3f6..85a07a04 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index 985678e2..254bfb18 100644
--- a/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_secrets/24_0family_mandatory_condition.gitlab.md
index 977b22f5..a4ac5fe8 100644
--- a/tests/results/test_namespace_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.gitlab.md
index e60935b3..77513d2d 100644
--- a/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_secrets/24_7validators_variable_optional.gitlab.md
index 612a2d42..110711e6 100644
--- a/tests/results/test_namespace_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_diff_name.gitlab.md
index a17bb1a0..4edded9c 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 8344e107..7a1e4d8c 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.gitlab.md
index 462a5094..3ec8d2d5 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
index bba8b9fc..7a181f67 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.gitlab.md
index b27f1a8d..c92fe343 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_leader_follower.gitlab.md
index 8e3142c7..060094a1 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.gitlab.md
index 679af962..42aca02b 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_secrets/40_0leadership_reduce.gitlab.md
index aea8c585..31a43aed 100644
--- a/tests/results/test_namespace_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_secrets/40_1leadership_append_follower.gitlab.md
index 2db5d556..88e00886 100644
--- a/tests/results/test_namespace_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_secrets/40_2leadership_calculation_index.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_secrets/40_2leadership_calculation_index_2.gitlab.md
index aec87e98..5ad06c3f 100644
--- a/tests/results/test_namespace_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.gitlab.md
index b12feb00..1fe7fd83 100644
--- a/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_2leadership_calculation_param_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.gitlab.md
index 392ac8d9..3a1a7317 100644
--- a/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_2leadership_leader_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_secrets/40_6leadership_follower_multi.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 711df40d..ecc0ab2d 100644
--- a/tests/results/test_namespace_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_boolean.gitlab.md
index 227791b5..58a6743d 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.gitlab.md
index 7debf6ec..255f0761 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_boolean_return_none.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_integer.gitlab.md
index 9a7e6a48..fa01ece4 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_integer.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_multi_variable.gitlab.md
index a13fd901..409caee3 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 67ebd506..25b98606 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 82e767d4..4e34f6fe 100644
--- a/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 79809657..face255e 100644
--- a/tests/results/test_namespace_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index fff6983d..ba98907c 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 27cf893d..27787c2a 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 4c0f9cd7..f2b06742 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 4511e206..8abfb35e 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index 0aef8d7d..e91c9da9 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 6eb07530..cc44ea2c 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable.gitlab.md
index 90a8376a..65a3cae5 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 172fb7c6..3505c560 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 9693626f..c4f34f92 100644
--- a/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_namespace_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_secrets/41_0choice_leader.gitlab.md
index 3961e66f..1f9df434 100644
--- a/tests/results/test_namespace_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_namespace_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_secrets/44_0leadership_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_secrets/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.gitlab.md
index 2973bdb5..baed115a 100644
--- a/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.gitlab.md
index 038028fb..a2af699c 100644
--- a/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 73ee6467..deae3834 100644
--- a/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_secrets/44_4leadership_mandatory.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.gitlab.md
index 737bf388..b0b5010d 100644
--- a/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 0fec9ec5..1798c6d8 100644
--- a/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index 225f06a3..4acf5f29 100644
--- a/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.gitlab.md
index 1f885722..b3128493 100644
--- a/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.gitlab.md
+++ b/tests/results/test_namespace_secrets/44_9calculated_default_leadership_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.gitlab.md
index 0cb8c3a0..25c9986c 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.gitlab.md
index c615769b..56741d4c 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.gitlab.md
index 55dedd1c..3324f057 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
index e510ddee..b0678199 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.gitlab.md
index f69194d7..b25adda6 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_empty.gitlab.md
index 52d4d1ab..6835884c 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 6f120365..5cbe2b85 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
index 7e9cc7a4..3ea04d05 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.gitlab.md
index e56acc3a..52e68f15 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_jinja_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.gitlab.md
index eb1b4674..216054dc 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index e181dfe3..fa2758ee 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.gitlab.md
index 08f55bf1..807f0dd4 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_static.gitlab.md
index d1f36677..81966563 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_test.gitlab.md
index f3371cf5..7a355f32 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_upper_char.gitlab.md
index 9cbf3e09..e1538014 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.gitlab.md
index ed366977..528720b8 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_optional.gitlab.md
index db99215e..a9597865 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index 0a79016c..19d5baa4 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index e4663b9a..3e09f4ef 100644
--- a/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_0family_hidden.gitlab.md b/tests/results/test_namespace_secrets/60_0family_hidden.gitlab.md
index f8cbffa5..4575d1e0 100644
--- a/tests/results/test_namespace_secrets/60_0family_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_secrets/60_0family_mode.gitlab.md
index 6d763e71..c1fe61d1 100644
--- a/tests/results/test_namespace_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.gitlab.md
index 0050c49e..6d49cabf 100644
--- a/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index a078cef3..986d9816 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 6deb5aea..3860b07f 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 7e0ee081..da6ced73 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 1022532a..12f75795 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.gitlab.md
index 671f6be1..da50bb2b 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 539e6203..79806e8b 100644
--- a/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.gitlab.md
index 03cdd485..3ea2c7dd 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.gitlab.md
index f4345f0a..70f2186f 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md
index 537f719e..6da16091 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index c124d6cb..701ae4f0 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 8c7545c8..8aa9fb93 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ec7591c9..fa818856 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
index e3ce9416..86a5c6cc 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
index 3c6791b1..3ffbcbc4 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
index 7b81c34c..6832729d 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
index f932f91a..1d515990 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
index 7fb2b49a..f37d739e 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
index 0af3f538..805a7cf2 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 30b82014..b15bfdfa 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index 14d576e6..d2f08eb4 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.gitlab.md
index ac52414f..7d88b734 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 0b90a8f9..403ac7e1 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 4606d89a..d3fcf533 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index e5d91130..0647a41c 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index ea61810c..7fc8129d 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
index cf1b9542..373169ef 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
index ff8961bd..38591e96 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.gitlab.md
index fb8256fe..874063c2 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
index 50a68e26..796b68ec 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
index 07c9afa9..34fb2889 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
index 6fd6700a..f180661f 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
index e8ee196c..02750ebb 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
index b0692876..03308863 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 505565a8..5c2cb2a5 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index e52bdcea..72c28478 100644
--- a/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_inside.gitlab.md
index 85a80041..72daa035 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_inside.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.gitlab.md
index 6187c233..a10fcfd4 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_inside_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.gitlab.md
index 0b24156e..48eca8aa 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 06fc8563..6ceaf6c5 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
index 0b9e3f2a..431d8bba 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
index 77eda29f..202bb7c3 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
index 798baec7..ae7f0aaf 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
index 63d2e17a..b3063cfc 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
index 98579e52..a3701928 100644
--- a/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_secrets/60_9extra_dynamic.gitlab.md
index a0ecb751..637c22cd 100644
--- a/tests/results/test_namespace_secrets/60_9extra_dynamic.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_9extra_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.gitlab.md
index a9965dc0..fba21f46 100644
--- a/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_9extra_dynamic_extra.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.gitlab.md
index 3885e5ee..e1d8aa1f 100644
--- a/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_namespace_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_namespace_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_secrets/68_0family_leadership_mode.gitlab.md
index 5629658b..e95c68e2 100644
--- a/tests/results/test_namespace_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_namespace_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_0version_underscore.gitlab.md b/tests/results/test_read_write/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_1empty_variable.gitlab.md b/tests/results/test_read_write/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_read_write/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_2default_calculated.gitlab.md b/tests/results/test_read_write/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_read_write/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_read_write/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write/00_2default_calculated_params_permissive.gitlab.md
index faab3e24..3afe291a 100644
--- a/tests/results/test_read_write/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_read_write/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_4load_subfolder.gitlab.md b/tests/results/test_read_write/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_read_write/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_5load_notype.gitlab.md b/tests/results/test_read_write/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_read_write/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6boolean.gitlab.md b/tests/results/test_read_write/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_read_write/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_read_write/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice.gitlab.md b/tests/results/test_read_write/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_read_write/00_6choice.gitlab.md
+++ b/tests/results/test_read_write/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice_calculation.gitlab.md b/tests/results/test_read_write/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice_link.gitlab.md b/tests/results/test_read_write/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_read_write/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice_variable.gitlab.md b/tests/results/test_read_write/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_read_write/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_read_write/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_read_write/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6custom.gitlab.md b/tests/results/test_read_write/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_read_write/00_6custom.gitlab.md
+++ b/tests/results/test_read_write/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6domainname.gitlab.md b/tests/results/test_read_write/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6domainname_params.gitlab.md b/tests/results/test_read_write/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6float.gitlab.md b/tests/results/test_read_write/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_read_write/00_6float.gitlab.md
+++ b/tests/results/test_read_write/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6integer.gitlab.md b/tests/results/test_read_write/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write/00_6integer.gitlab.md
+++ b/tests/results/test_read_write/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6ip.gitlab.md b/tests/results/test_read_write/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_read_write/00_6ip.gitlab.md
+++ b/tests/results/test_read_write/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6network.gitlab.md b/tests/results/test_read_write/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_read_write/00_6network.gitlab.md
+++ b/tests/results/test_read_write/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6number.gitlab.md b/tests/results/test_read_write/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write/00_6number.gitlab.md
+++ b/tests/results/test_read_write/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6port.gitlab.md b/tests/results/test_read_write/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_read_write/00_6port.gitlab.md
+++ b/tests/results/test_read_write/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6regexp.gitlab.md b/tests/results/test_read_write/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_read_write/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6regexp_link.gitlab.md b/tests/results/test_read_write/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_read_write/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6secret.gitlab.md b/tests/results/test_read_write/00_6secret.gitlab.md
index 738499bf..779b7c15 100644
--- a/tests/results/test_read_write/00_6secret.gitlab.md
+++ b/tests/results/test_read_write/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6secret_param.gitlab.md b/tests/results/test_read_write/00_6secret_param.gitlab.md
index 57dd9f92..a2451c23 100644
--- a/tests/results/test_read_write/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_6string.gitlab.md b/tests/results/test_read_write/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_read_write/00_6string.gitlab.md
+++ b/tests/results/test_read_write/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_7choice_quote.gitlab.md b/tests/results/test_read_write/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_read_write/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_7help.gitlab.md b/tests/results/test_read_write/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write/00_7help.gitlab.md
+++ b/tests/results/test_read_write/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_7help_quote.gitlab.md b/tests/results/test_read_write/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_7help_sup.gitlab.md b/tests/results/test_read_write/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_read_write/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_7value_doublequote.gitlab.md b/tests/results/test_read_write/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_read_write/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_read_write/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_read_write/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_7value_quote.gitlab.md b/tests/results/test_read_write/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_read_write/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_8calculation_information.gitlab.md b/tests/results/test_read_write/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_8test.gitlab.md b/tests/results/test_read_write/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_read_write/00_8test.gitlab.md
+++ b/tests/results/test_read_write/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_read_write/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9choice_variables.gitlab.md b/tests/results/test_read_write/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_read_write/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation.gitlab.md b/tests/results/test_read_write/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_read_write/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_read_write/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_read_write/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_read_write/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_read_write/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/00_9default_integer.gitlab.md b/tests/results/test_read_write/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/00_9default_number.gitlab.md b/tests/results/test_read_write/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6boolean_multi.gitlab.md b/tests/results/test_read_write/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_read_write/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6custom_multi.gitlab.md b/tests/results/test_read_write/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_read_write/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6float_multi.gitlab.md b/tests/results/test_read_write/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_read_write/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6integer_multi.gitlab.md b/tests/results/test_read_write/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_read_write/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_read_write/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/01_6string_empty.gitlab.md b/tests/results/test_read_write/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_read_write/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6string_multi.gitlab.md b/tests/results/test_read_write/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_read_write/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_6string_multi_length.gitlab.md b/tests/results/test_read_write/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_read_write/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_read_write/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_read_write/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_read_write/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_read_write/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_read_write/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_read_write/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/02_0tags.gitlab.md b/tests/results/test_read_write/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write/02_0tags.gitlab.md
+++ b/tests/results/test_read_write/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_0type_param.gitlab.md b/tests/results/test_read_write/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_read_write/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_0type_param_integer.gitlab.md b/tests/results/test_read_write/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_read_write/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1auto_save.gitlab.md b/tests/results/test_read_write/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_read_write/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden_3.gitlab.md
index d3660d6b..0ad88d74 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden_4.gitlab.md
index fcd35296..82195750 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden_5.gitlab.md
index 09855304..955daf88 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write/04_1default_calculation_hidden_6.gitlab.md
index 38054a51..d787f88e 100644
--- a/tests/results/test_read_write/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_optional.gitlab.md
index 84f41fc5..fcb2898f 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_optional_default.gitlab.md
index 1e19098b..1cb04000 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable5.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators.gitlab.md b/tests/results/test_read_write/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_read_write/04_5validators.gitlab.md
+++ b/tests/results/test_read_write/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/04_5validators_differ.gitlab.md b/tests/results/test_read_write/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_read_write/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators_multi.gitlab.md b/tests/results/test_read_write/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_read_write/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators_multi2.gitlab.md b/tests/results/test_read_write/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_read_write/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators_multi3.gitlab.md b/tests/results/test_read_write/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_read_write/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators_warnings.gitlab.md b/tests/results/test_read_write/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/05_0multi_uniq.gitlab.md b/tests/results/test_read_write/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_0redefine_description.gitlab.md b/tests/results/test_read_write/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_read_write/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_read_write/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_read_write/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_5redefine_choice.gitlab.md b/tests/results/test_read_write/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_read_write/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_5redefine_default.gitlab.md b/tests/results/test_read_write/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_5redefine_family.gitlab.md b/tests/results/test_read_write/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_read_write/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_5redefine_help.gitlab.md b/tests/results/test_read_write/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_read_write/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16_5redefine_multi.gitlab.md b/tests/results/test_read_write/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_5test_redefine.gitlab.md b/tests/results/test_read_write/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_read_write/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_6choice_redefine.gitlab.md b/tests/results/test_read_write/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_read_write/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_read_write/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/16exists_exists.gitlab.md b/tests/results/test_read_write/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_read_write/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0family_append.gitlab.md b/tests/results/test_read_write/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_read_write/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0multi_family.gitlab.md b/tests/results/test_read_write/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0multi_family_order.gitlab.md b/tests/results/test_read_write/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_read_write/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_read_write/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_read_write/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_read_write/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/20_7help_family.gitlab.md b/tests/results/test_read_write/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_read_write/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_9default_information_parent.gitlab.md b/tests/results/test_read_write/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_read_write/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/20_9family_absolute.gitlab.md b/tests/results/test_read_write/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_read_write/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_read_write/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 583bf6cd..98579bca 100644
--- a/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_read_write/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_read_write/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_0leadership.gitlab.md b/tests/results/test_read_write/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_read_write/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_read_write/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_read_write/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_read_write/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_read_write/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_read_write/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_read_write/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_read_write/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_read_write/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_read_write/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/41_0choice_leader.gitlab.md b/tests/results/test_read_write/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_read_write/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_read_write/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic.gitlab.md b/tests/results/test_read_write/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_read_write/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_read_write/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_read_write/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_read_write/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_source_hidden.gitlab.md
index b5509be6..4587d6d8 100644
--- a/tests/results/test_read_write/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_read_write/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_read_write/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_read_write/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_read_write/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_read_write/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_0family_mode.gitlab.md b/tests/results/test_read_write/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_read_write/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_read_write/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_read_write/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
index 761fc438..a4106dbf 100644
--- a/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_read_write/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_read_write/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_read_write/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_read_write/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_errors/00_0version_underscore.gitlab.md b/tests/results/test_read_write_errors/00_0version_underscore.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write_errors/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_1empty_variable.gitlab.md b/tests/results/test_read_write_errors/00_1empty_variable.gitlab.md
index 750f5fe5..fd2b0bd8 100644
--- a/tests/results/test_read_write_errors/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated.gitlab.md
index 83082b8b..55da2b15 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_multi.gitlab.md
index 825020eb..910b9dca 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
index 4499014f..4fb0ce3d 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_variable.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_variable_description.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
index 58afcad8..896bc51f 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write_errors/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_errors/00_4load_subfolder.gitlab.md
index 4a486c4d..4b8a2b82 100644
--- a/tests/results/test_read_write_errors/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write_errors/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_5load_notype.gitlab.md b/tests/results/test_read_write_errors/00_5load_notype.gitlab.md
index fb1f836f..96bdc16f 100644
--- a/tests/results/test_read_write_errors/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write_errors/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6boolean.gitlab.md b/tests/results/test_read_write_errors/00_6boolean.gitlab.md
index 338d2cfb..acf93c30 100644
--- a/tests/results/test_read_write_errors/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_errors/00_6boolean_no_mandatory.gitlab.md
index 7453e254..ad73d979 100644
--- a/tests/results/test_read_write_errors/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice.gitlab.md b/tests/results/test_read_write_errors/00_6choice.gitlab.md
index c4678c68..e7fea5d8 100644
--- a/tests/results/test_read_write_errors/00_6choice.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_errors/00_6choice_calculation.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_errors/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice_link.gitlab.md b/tests/results/test_read_write_errors/00_6choice_link.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_errors/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice_variable.gitlab.md b/tests/results/test_read_write_errors/00_6choice_variable.gitlab.md
index 8de3b423..6881fbe5 100644
--- a/tests/results/test_read_write_errors/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_errors/00_6choice_variable_link.gitlab.md
index 168a93e9..c33eca3d 100644
--- a/tests/results/test_read_write_errors/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_errors/00_6choice_variable_link2.gitlab.md
index b9ecb554..2071065f 100644
--- a/tests/results/test_read_write_errors/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6custom.gitlab.md b/tests/results/test_read_write_errors/00_6custom.gitlab.md
index b5523bc4..551fabf5 100644
--- a/tests/results/test_read_write_errors/00_6custom.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6domainname.gitlab.md b/tests/results/test_read_write_errors/00_6domainname.gitlab.md
index 9527be71..678901ce 100644
--- a/tests/results/test_read_write_errors/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6domainname_params.gitlab.md b/tests/results/test_read_write_errors/00_6domainname_params.gitlab.md
index 9527be71..678901ce 100644
--- a/tests/results/test_read_write_errors/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6float.gitlab.md b/tests/results/test_read_write_errors/00_6float.gitlab.md
index f11a2b3e..cf0278ac 100644
--- a/tests/results/test_read_write_errors/00_6float.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6integer.gitlab.md b/tests/results/test_read_write_errors/00_6integer.gitlab.md
index e03d6049..a6f19431 100644
--- a/tests/results/test_read_write_errors/00_6integer.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6ip.gitlab.md b/tests/results/test_read_write_errors/00_6ip.gitlab.md
index 2a392237..2413139d 100644
--- a/tests/results/test_read_write_errors/00_6ip.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6network.gitlab.md b/tests/results/test_read_write_errors/00_6network.gitlab.md
index 7b83092b..e54e981c 100644
--- a/tests/results/test_read_write_errors/00_6network.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6number.gitlab.md b/tests/results/test_read_write_errors/00_6number.gitlab.md
index e03d6049..a6f19431 100644
--- a/tests/results/test_read_write_errors/00_6number.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6port.gitlab.md b/tests/results/test_read_write_errors/00_6port.gitlab.md
index f798b36e..de9998c6 100644
--- a/tests/results/test_read_write_errors/00_6port.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6regexp.gitlab.md b/tests/results/test_read_write_errors/00_6regexp.gitlab.md
index 5bb0ecc5..4df05b9c 100644
--- a/tests/results/test_read_write_errors/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6regexp_link.gitlab.md b/tests/results/test_read_write_errors/00_6regexp_link.gitlab.md
index 78662b3d..dcba261b 100644
--- a/tests/results/test_read_write_errors/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6secret.gitlab.md b/tests/results/test_read_write_errors/00_6secret.gitlab.md
index 1183c130..c977e946 100644
--- a/tests/results/test_read_write_errors/00_6secret.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6secret_param.gitlab.md b/tests/results/test_read_write_errors/00_6secret_param.gitlab.md
index d83fa465..5a400085 100644
--- a/tests/results/test_read_write_errors/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_6string.gitlab.md b/tests/results/test_read_write_errors/00_6string.gitlab.md
index 2bf4f050..50903d3b 100644
--- a/tests/results/test_read_write_errors/00_6string.gitlab.md
+++ b/tests/results/test_read_write_errors/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7choice_quote.gitlab.md b/tests/results/test_read_write_errors/00_7choice_quote.gitlab.md
index 855be0be..6412e268 100644
--- a/tests/results/test_read_write_errors/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7help.gitlab.md b/tests/results/test_read_write_errors/00_7help.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_errors/00_7help.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7help_quote.gitlab.md b/tests/results/test_read_write_errors/00_7help_quote.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_errors/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7help_sup.gitlab.md b/tests/results/test_read_write_errors/00_7help_sup.gitlab.md
index eb15b6b0..485fa902 100644
--- a/tests/results/test_read_write_errors/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_errors/00_7value_doublequote.gitlab.md
index bf2d95ff..dbcc86ca 100644
--- a/tests/results/test_read_write_errors/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_errors/00_7value_doublequote2.gitlab.md
index 8ea40872..ea568a74 100644
--- a/tests/results/test_read_write_errors/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_errors/00_7value_doublequote3.gitlab.md
index 4f180316..031eaba2 100644
--- a/tests/results/test_read_write_errors/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_7value_quote.gitlab.md b/tests/results/test_read_write_errors/00_7value_quote.gitlab.md
index 0efb15df..c1f068e4 100644
--- a/tests/results/test_read_write_errors/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write_errors/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_8calculation_information.gitlab.md b/tests/results/test_read_write_errors/00_8calculation_information.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write_errors/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_8test.gitlab.md b/tests/results/test_read_write_errors/00_8test.gitlab.md
index 376b3698..1baaa150 100644
--- a/tests/results/test_read_write_errors/00_8test.gitlab.md
+++ b/tests/results/test_read_write_errors/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_errors/00_9choice_variable_multi.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_errors/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9choice_variables.gitlab.md b/tests/results/test_read_write_errors/00_9choice_variables.gitlab.md
index 66c8d563..d637fe8f 100644
--- a/tests/results/test_read_write_errors/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation.gitlab.md
index 0030f835..4e1c9404 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_information.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
index 2600b0bf..a6c70373 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
index 2600b0bf..a6c70373 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
index fa318034..8ac2fbc5 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_optional.gitlab.md
index ed9618c3..09957600 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
index ef79b2a0..f2c11cbf 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_errors/00_9default_calculation_param_optional.gitlab.md
index 0202954b..37b6e271 100644
--- a/tests/results/test_read_write_errors/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_errors/00_9default_information_other_variable.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_errors/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_errors/00_9default_information_other_variable2.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_errors/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_integer.gitlab.md b/tests/results/test_read_write_errors/00_9default_integer.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_errors/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/00_9default_number.gitlab.md b/tests/results/test_read_write_errors/00_9default_number.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_errors/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write_errors/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_errors/01_6boolean_multi.gitlab.md
index 0208adba..1b5ddbaf 100644
--- a/tests/results/test_read_write_errors/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6custom_multi.gitlab.md b/tests/results/test_read_write_errors/01_6custom_multi.gitlab.md
index 6c7c169d..fe278187 100644
--- a/tests/results/test_read_write_errors/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6float_multi.gitlab.md b/tests/results/test_read_write_errors/01_6float_multi.gitlab.md
index 27691fec..cdd7d5f7 100644
--- a/tests/results/test_read_write_errors/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6integer_multi.gitlab.md b/tests/results/test_read_write_errors/01_6integer_multi.gitlab.md
index 1791d385..5520b354 100644
--- a/tests/results/test_read_write_errors/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_errors/01_6integer_multi_mandatory.gitlab.md
index 820c7901..562a9476 100644
--- a/tests/results/test_read_write_errors/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6string_empty.gitlab.md b/tests/results/test_read_write_errors/01_6string_empty.gitlab.md
index b3c3aca5..c0d04605 100644
--- a/tests/results/test_read_write_errors/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6string_multi.gitlab.md b/tests/results/test_read_write_errors/01_6string_multi.gitlab.md
index 185fe780..f153d85e 100644
--- a/tests/results/test_read_write_errors/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_errors/01_6string_multi_length.gitlab.md
index 1e8506d9..20e34d9c 100644
--- a/tests/results/test_read_write_errors/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write_errors/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_errors/01_7value_multi_doublequote.gitlab.md
index 906c468f..0b34f11e 100644
--- a/tests/results/test_read_write_errors/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write_errors/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_errors/01_7value_multi_doublequote2.gitlab.md
index 0c6780af..c7320ff3 100644
--- a/tests/results/test_read_write_errors/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_errors/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_errors/01_7value_multi_quote.gitlab.md
index 5f685d65..2d0fe5de 100644
--- a/tests/results/test_read_write_errors/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write_errors/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_errors/01_8calculation_information_multi.gitlab.md
index 34332ad6..2c916332 100644
--- a/tests/results/test_read_write_errors/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_errors/01_9choice_variable_multi.gitlab.md
index 6ee6fadd..fa647987 100644
--- a/tests/results/test_read_write_errors/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_errors/01_9choice_variable_optional.gitlab.md
index 54a81124..9f3312cd 100644
--- a/tests/results/test_read_write_errors/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/02_0tags.gitlab.md b/tests/results/test_read_write_errors/02_0tags.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_errors/02_0tags.gitlab.md
+++ b/tests/results/test_read_write_errors/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_0type_param.gitlab.md b/tests/results/test_read_write_errors/04_0type_param.gitlab.md
index 9107ce77..f5c8dcbc 100644
--- a/tests/results/test_read_write_errors/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write_errors/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_errors/04_0type_param_integer.gitlab.md
index 8196c5aa..ed9c3171 100644
--- a/tests/results/test_read_write_errors/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write_errors/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1auto_save.gitlab.md b/tests/results/test_read_write_errors/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write_errors/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_errors/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_errors/04_1auto_save_and_calculated.gitlab.md
index 9d637a99..69370869 100644
--- a/tests/results/test_read_write_errors/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
index 4d7e42d0..26286a14 100644
--- a/tests/results/test_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden.gitlab.md
index fb875c1b..fc3588d3 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
index fb875c1b..fc3588d3 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
index 077d2e8d..9c7fade8 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
index ce4f7100..f47efc1a 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
index b965c416..77ddcfa4 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
index 942c3e18..5301ef0e 100644
--- a/tests/results/test_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write_errors/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
index 7714992d..cf82ab66 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_optional.gitlab.md
index 818189e3..d5851491 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
index e1b67211..ed0f7eb4 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable.gitlab.md
index 166e58bb..11508d86 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
index 9a2043db..93f0eca8 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
index 9a2043db..93f0eca8 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
index ac16037e..d17ca615 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
index a93d1f9d..68f6d7b6 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
index 166e58bb..11508d86 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
index 4c9987ce..b88f5ac0 100644
--- a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators.gitlab.md b/tests/results/test_read_write_errors/04_5validators.gitlab.md
index 4b79fd07..d0820056 100644
--- a/tests/results/test_read_write_errors/04_5validators.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_differ.gitlab.md b/tests/results/test_read_write_errors/04_5validators_differ.gitlab.md
index e4a8851a..9045b80f 100644
--- a/tests/results/test_read_write_errors/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_multi.gitlab.md b/tests/results/test_read_write_errors/04_5validators_multi.gitlab.md
index b47624bd..fdce67a7 100644
--- a/tests/results/test_read_write_errors/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_errors/04_5validators_multi2.gitlab.md
index b47624bd..fdce67a7 100644
--- a/tests/results/test_read_write_errors/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_errors/04_5validators_multi3.gitlab.md
index 36ce5327..8b6f0928 100644
--- a/tests/results/test_read_write_errors/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_errors/04_5validators_warnings.gitlab.md
index 779d7ea4..bc721dc0 100644
--- a/tests/results/test_read_write_errors/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_errors/04_5validators_warnings_all.gitlab.md
index 779d7ea4..bc721dc0 100644
--- a/tests/results/test_read_write_errors/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write_errors/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_errors/05_0multi_not_uniq.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_errors/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write_errors/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_errors/05_0multi_uniq.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_errors/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write_errors/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_errors/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write_errors/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write_errors/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_errors/16_0redefine_description.gitlab.md b/tests/results/test_read_write_errors/16_0redefine_description.gitlab.md
index bc0e0f57..53759d6c 100644
--- a/tests/results/test_read_write_errors/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write_errors/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_errors/16_3family_empty_at_ends.gitlab.md
index 65a703b7..c8480962 100644
--- a/tests/results/test_read_write_errors/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write_errors/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_errors/16_5exists_nonexists.gitlab.md
index d1c74327..6ed65b51 100644
--- a/tests/results/test_read_write_errors/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_calculation.gitlab.md
index cae748e4..2f21ea69 100644
--- a/tests/results/test_read_write_errors/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_choice.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_default.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_default.gitlab.md
index cae748e4..2f21ea69 100644
--- a/tests/results/test_read_write_errors/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_default_calculation.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_errors/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_family.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_family.gitlab.md
index 3debe3fc..b352402d 100644
--- a/tests/results/test_read_write_errors/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_help.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_help.gitlab.md
index 4905e4f3..911f0ede 100644
--- a/tests/results/test_read_write_errors/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_multi.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_errors/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
index 91c91e01..f139d52e 100644
--- a/tests/results/test_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_5test_redefine.gitlab.md b/tests/results/test_read_write_errors/16_5test_redefine.gitlab.md
index 9de6a28a..c4bd3ac2 100644
--- a/tests/results/test_read_write_errors/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write_errors/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_errors/16_6choice_redefine.gitlab.md
index 04eadb58..8b5c827e 100644
--- a/tests/results/test_read_write_errors/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write_errors/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_errors/16_6exists_redefine_family.gitlab.md
index 736f3374..13da6221 100644
--- a/tests/results/test_read_write_errors/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write_errors/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/16exists_exists.gitlab.md b/tests/results/test_read_write_errors/16exists_exists.gitlab.md
index 3ce17976..7ebf626b 100644
--- a/tests/results/test_read_write_errors/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write_errors/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0family_append.gitlab.md b/tests/results/test_read_write_errors/20_0family_append.gitlab.md
index ba23a346..9cd6cb10 100644
--- a/tests/results/test_read_write_errors/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0multi_family.gitlab.md b/tests/results/test_read_write_errors/20_0multi_family.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_errors/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_errors/20_0multi_family_basic.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_errors/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_errors/20_0multi_family_expert.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_errors/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_errors/20_0multi_family_order.gitlab.md
index 79533047..830130f7 100644
--- a/tests/results/test_read_write_errors/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_errors/20_0validators_differ_redefine.gitlab.md
index 5e1986f8..00ab0ffc 100644
--- a/tests/results/test_read_write_errors/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write_errors/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
index 58e26e0b..bd07f99f 100644
--- a/tests/results/test_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write_errors/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_errors/20_2family_looks_like_variable.gitlab.md
index 0f4f7add..abf1774b 100644
--- a/tests/results/test_read_write_errors/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_7help_family.gitlab.md b/tests/results/test_read_write_errors/20_7help_family.gitlab.md
index 06503829..979e48be 100644
--- a/tests/results/test_read_write_errors/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write_errors/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_errors/20_9default_information_parent.gitlab.md
index 06612855..de78e27a 100644
--- a/tests/results/test_read_write_errors/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write_errors/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/20_9family_absolute.gitlab.md b/tests/results/test_read_write_errors/20_9family_absolute.gitlab.md
index 1d6fe693..3566dc40 100644
--- a/tests/results/test_read_write_errors/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write_errors/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
index ea6a9a50..865755c0 100644
--- a/tests/results/test_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_errors/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 387c771f..e236dd07 100644
--- a/tests/results/test_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
index a20f8476..a1013df1 100644
--- a/tests/results/test_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_errors/24_0family_mandatory_condition.gitlab.md
index 91c91e01..f139d52e 100644
--- a/tests/results/test_read_write_errors/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write_errors/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
index a5dc51d6..ffdb8edf 100644
--- a/tests/results/test_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_errors/24_7validators_variable_optional.gitlab.md
index 04d73933..b19d8a8d 100644
--- a/tests/results/test_read_write_errors/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership.gitlab.md b/tests/results/test_read_write_errors/40_0leadership.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_diff_name.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_follower_default_value.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_leader_follower.gitlab.md
index 48c0eded..3ba8e0c1 100644
--- a/tests/results/test_read_write_errors/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
index 68b48747..7b003d6b 100644
--- a/tests/results/test_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_errors/40_0leadership_reduce.gitlab.md
index 6644a5a0..5304f9b0 100644
--- a/tests/results/test_read_write_errors/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write_errors/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_errors/40_1leadership_append_follower.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write_errors/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_errors/40_2leadership_calculation_index.gitlab.md
index a2ef4be3..6ce7d9fe 100644
--- a/tests/results/test_read_write_errors/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write_errors/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
index a2ef4be3..6ce7d9fe 100644
--- a/tests/results/test_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write_errors/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_errors/40_6leadership_follower_multi.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_errors/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write_errors/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_errors/40_8calculation_boolean.gitlab.md
index e998e2e0..383406f6 100644
--- a/tests/results/test_read_write_errors/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_errors/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_errors/40_8calculation_multi_variable.gitlab.md
index 93cc57d5..8ff0a6a4 100644
--- a/tests/results/test_read_write_errors/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
index 8b12948d..3fda66a8 100644
--- a/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
index 648810ef..76da8059 100644
--- a/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write_errors/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index dda8c75e..9a7e4de1 100644
--- a/tests/results/test_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
index 446458ca..92a4ff85 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
index 446458ca..92a4ff85 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 9dd196e8..cec531c7 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
index ab95c184..319982d9 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
index d98a8c54..57a526db 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
index 9520deb3..12a9af27 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
index 05209c4f..c3f5c57b 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-variable.gitlab.md
index 8a471b8b..d2775e4c 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 926d116f..9f6239fd 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 15776bd1..9c792a4a 100644
--- a/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/41_0choice_leader.gitlab.md b/tests/results/test_read_write_errors/41_0choice_leader.gitlab.md
index f514fe01..f770a333 100644
--- a/tests/results/test_read_write_errors/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write_errors/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
index 99d0a639..56263f31 100644
--- a/tests/results/test_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write_errors/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_errors/44_4leadership_mandatory.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write_errors/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write_errors/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
index 818189e3..d5851491 100644
--- a/tests/results/test_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
index e14e1815..122086cb 100644
--- a/tests/results/test_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write_errors/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic.gitlab.md
index 597b65e4..da717c1f 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_1_1.gitlab.md
index 597b65e4..da717c1f 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
index 1145a95e..78dd04ee 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_no_description.gitlab.md
index a4e7410d..591b8ba7 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
index c14cebad..9b6db569 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_static.gitlab.md
index 7c42eda0..ccb99a49 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_test.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
index 350be683..74cfa450 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
index c77ab031..0907aad9 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
index a30e8e0f..5b212df6 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_0family_mode.gitlab.md b/tests/results/test_read_write_errors/60_0family_mode.gitlab.md
index bb0b6fb0..703f83d3 100644
--- a/tests/results/test_read_write_errors/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write_errors/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_errors/60_1family_dynamic_jinja.gitlab.md
index 5ac7165a..11e94f8c 100644
--- a/tests/results/test_read_write_errors/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write_errors/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 660d2e94..8340dd8a 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 11462c78..29bd3edc 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index e2d98b3a..54bbb0cf 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index e9ee0788..cfa58971 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
index 300a9574..7f76f7d0 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
index baf54d5c..b469bf68 100644
--- a/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
index 271b9dce..34caaf10 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
index 7ec673a6..8cbe3a4c 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ebb0cf0c..af8535c1 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
index 0dde9a0c..ea198494 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index aa4ae725..2ec4d801 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
index eedcab93..f4be378e 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 09425121..35e567b3 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 3dda0c7a..fa2fa9a4 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
index 00e3dd56..f24d5d28 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
index e5485cee..1e96d586 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
index d42dbd9f..7d862519 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index aae73a1c..1bbbc545 100644
--- a/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_errors/60_6family_dynamic_leadership.gitlab.md
index 378a8686..05055749 100644
--- a/tests/results/test_read_write_errors/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write_errors/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write_errors/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
index e7f36f00..72518de7 100644
--- a/tests/results/test_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write_errors/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_errors/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_errors/68_0family_leadership_mode.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_errors/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write_errors/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
index faab3e24..3afe291a 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md b/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md b/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_read_write_mandatory/00_6choice.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6custom.gitlab.md b/tests/results/test_read_write_mandatory/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_read_write_mandatory/00_6custom.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md b/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6float.gitlab.md b/tests/results/test_read_write_mandatory/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_read_write_mandatory/00_6float.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6integer.gitlab.md b/tests/results/test_read_write_mandatory/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_mandatory/00_6integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6ip.gitlab.md b/tests/results/test_read_write_mandatory/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_read_write_mandatory/00_6ip.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6network.gitlab.md b/tests/results/test_read_write_mandatory/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_read_write_mandatory/00_6network.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6number.gitlab.md b/tests/results/test_read_write_mandatory/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_mandatory/00_6number.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6port.gitlab.md b/tests/results/test_read_write_mandatory/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_read_write_mandatory/00_6port.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md b/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6secret.gitlab.md b/tests/results/test_read_write_mandatory/00_6secret.gitlab.md
index 738499bf..779b7c15 100644
--- a/tests/results/test_read_write_mandatory/00_6secret.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md b/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md
index 57dd9f92..a2451c23 100644
--- a/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_6string.gitlab.md b/tests/results/test_read_write_mandatory/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_read_write_mandatory/00_6string.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_7help.gitlab.md b/tests/results/test_read_write_mandatory/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory/00_7help.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md b/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_8test.gitlab.md b/tests/results/test_read_write_mandatory/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_read_write_mandatory/00_8test.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/02_0tags.gitlab.md b/tests/results/test_read_write_mandatory/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory/02_0tags.gitlab.md
+++ b/tests/results/test_read_write_mandatory/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md b/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
index d3660d6b..0ad88d74 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
index fcd35296..82195750 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
index 09855304..955daf88 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
index 38054a51..d787f88e 100644
--- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
index 84f41fc5..fcb2898f 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
index 1e19098b..1cb04000 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_read_write_mandatory/04_5validators.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md b/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md b/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md b/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md b/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 583bf6cd..98579bca 100644
--- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
index b5509be6..4587d6d8 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
index 761fc438..a4106dbf 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
index faab3e24..3afe291a 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md
index 33de27df..a968e0a0 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md
index 08fa810f..82fa4804 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
index d3660d6b..0ad88d74 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
index fcd35296..82195750 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
index 09855304..955daf88 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
index 38054a51..d787f88e 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
index 84f41fc5..fcb2898f 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 1e19098b..1cb04000 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 583bf6cd..98579bca 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
index b5509be6..4587d6d8 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 761fc438..a4106dbf 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_0version_underscore.gitlab.md b/tests/results/test_read_write_secrets/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_1empty_variable.gitlab.md b/tests/results/test_read_write_secrets/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_read_write_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
index faab3e24..3afe291a 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_secrets/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_read_write_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_5load_notype.gitlab.md b/tests/results/test_read_write_secrets/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_read_write_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6boolean.gitlab.md b/tests/results/test_read_write_secrets/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_read_write_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice.gitlab.md b/tests/results/test_read_write_secrets/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_read_write_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_secrets/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice_link.gitlab.md b/tests/results/test_read_write_secrets/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_read_write_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice_variable.gitlab.md b/tests/results/test_read_write_secrets/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_read_write_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_secrets/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_read_write_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_secrets/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_read_write_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6custom.gitlab.md b/tests/results/test_read_write_secrets/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_read_write_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6domainname.gitlab.md b/tests/results/test_read_write_secrets/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6domainname_params.gitlab.md b/tests/results/test_read_write_secrets/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_read_write_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6float.gitlab.md b/tests/results/test_read_write_secrets/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_read_write_secrets/00_6float.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6integer.gitlab.md b/tests/results/test_read_write_secrets/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6ip.gitlab.md b/tests/results/test_read_write_secrets/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_read_write_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6network.gitlab.md b/tests/results/test_read_write_secrets/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_read_write_secrets/00_6network.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6number.gitlab.md b/tests/results/test_read_write_secrets/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_read_write_secrets/00_6number.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6port.gitlab.md b/tests/results/test_read_write_secrets/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_read_write_secrets/00_6port.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6regexp.gitlab.md b/tests/results/test_read_write_secrets/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_read_write_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6regexp_link.gitlab.md b/tests/results/test_read_write_secrets/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_read_write_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6secret.gitlab.md b/tests/results/test_read_write_secrets/00_6secret.gitlab.md
index 33de27df..a968e0a0 100644
--- a/tests/results/test_read_write_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6secret_param.gitlab.md b/tests/results/test_read_write_secrets/00_6secret_param.gitlab.md
index 08fa810f..82fa4804 100644
--- a/tests/results/test_read_write_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_6string.gitlab.md b/tests/results/test_read_write_secrets/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_read_write_secrets/00_6string.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_7choice_quote.gitlab.md b/tests/results/test_read_write_secrets/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_read_write_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_7help.gitlab.md b/tests/results/test_read_write_secrets/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_secrets/00_7help.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_7help_quote.gitlab.md b/tests/results/test_read_write_secrets/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_7help_sup.gitlab.md b/tests/results/test_read_write_secrets/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_read_write_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_secrets/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_read_write_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_secrets/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_read_write_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_secrets/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_read_write_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_7value_quote.gitlab.md b/tests/results/test_read_write_secrets/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_read_write_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_8calculation_information.gitlab.md b/tests/results/test_read_write_secrets/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_8test.gitlab.md b/tests/results/test_read_write_secrets/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_read_write_secrets/00_8test.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_secrets/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_read_write_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9choice_variables.gitlab.md b/tests/results/test_read_write_secrets/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_read_write_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_secrets/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_secrets/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_read_write_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/00_9default_integer.gitlab.md b/tests/results/test_read_write_secrets/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/00_9default_number.gitlab.md b/tests/results/test_read_write_secrets/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_read_write_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_secrets/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_read_write_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6custom_multi.gitlab.md b/tests/results/test_read_write_secrets/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_read_write_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6float_multi.gitlab.md b/tests/results/test_read_write_secrets/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_read_write_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6integer_multi.gitlab.md b/tests/results/test_read_write_secrets/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_read_write_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/01_6string_empty.gitlab.md b/tests/results/test_read_write_secrets/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_read_write_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6string_multi.gitlab.md b/tests/results/test_read_write_secrets/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_read_write_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_secrets/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_read_write_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_secrets/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_read_write_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_secrets/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_read_write_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_secrets/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_read_write_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_secrets/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_read_write_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_secrets/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_read_write_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/02_0tags.gitlab.md b/tests/results/test_read_write_secrets/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_read_write_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_read_write_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_0type_param.gitlab.md b/tests/results/test_read_write_secrets/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_read_write_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_secrets/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_read_write_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1auto_save.gitlab.md b/tests/results/test_read_write_secrets/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
index d3660d6b..0ad88d74 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
index fcd35296..82195750 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
index 09855304..955daf88 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
index 38054a51..d787f88e 100644
--- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
index 84f41fc5..fcb2898f 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 1e19098b..1cb04000 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators.gitlab.md b/tests/results/test_read_write_secrets/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_read_write_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/04_5validators_differ.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_read_write_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators_multi.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_read_write_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_read_write_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_read_write_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_secrets/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_read_write_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_secrets/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_secrets/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_secrets/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_0redefine_description.gitlab.md b/tests/results/test_read_write_secrets/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_read_write_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_secrets/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_read_write_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_secrets/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_read_write_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_5redefine_default.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_5redefine_family.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_5redefine_help.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_5test_redefine.gitlab.md b/tests/results/test_read_write_secrets/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_read_write_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_secrets/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_read_write_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_secrets/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_read_write_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/16exists_exists.gitlab.md b/tests/results/test_read_write_secrets/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_read_write_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0family_append.gitlab.md b/tests/results/test_read_write_secrets/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_read_write_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0multi_family.gitlab.md b/tests/results/test_read_write_secrets/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_secrets/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_secrets/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_read_write_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_secrets/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_read_write_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_secrets/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_read_write_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_secrets/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_read_write_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/20_7help_family.gitlab.md b/tests/results/test_read_write_secrets/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_read_write_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_secrets/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_read_write_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/20_9family_absolute.gitlab.md b/tests/results/test_read_write_secrets/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_read_write_secrets/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write_secrets/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 583bf6cd..98579bca 100644
--- a/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_read_write_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_secrets/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_read_write_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_0leadership.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_secrets/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_read_write_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_secrets/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_read_write_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_secrets/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_secrets/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_secrets/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_read_write_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_secrets/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_read_write_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/41_0choice_leader.gitlab.md b/tests/results/test_read_write_secrets/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_read_write_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_secrets/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
index b5509be6..4587d6d8 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_0family_mode.gitlab.md b/tests/results/test_read_write_secrets/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_read_write_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 761fc438..a4106dbf 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_read_write_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_secrets/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_read_write_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets_errors/00_0version_underscore.gitlab.md b/tests/results/test_read_write_secrets_errors/00_0version_underscore.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/00_0version_underscore.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_1empty_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/00_1empty_variable.gitlab.md
index 750f5fe5..fd2b0bd8 100644
--- a/tests/results/test_read_write_secrets_errors/00_1empty_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated.gitlab.md
index 83082b8b..55da2b15 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
index 825020eb..910b9dca 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
index 4499014f..4fb0ce3d 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
index 58afcad8..896bc51f 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_secrets_errors/00_4load_subfolder.gitlab.md
index 4a486c4d..4b8a2b82 100644
--- a/tests/results/test_read_write_secrets_errors/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_5load_notype.gitlab.md b/tests/results/test_read_write_secrets_errors/00_5load_notype.gitlab.md
index fb1f836f..96bdc16f 100644
--- a/tests/results/test_read_write_secrets_errors/00_5load_notype.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6boolean.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6boolean.gitlab.md
index 338d2cfb..acf93c30 100644
--- a/tests/results/test_read_write_secrets_errors/00_6boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
index 7453e254..ad73d979 100644
--- a/tests/results/test_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice.gitlab.md
index c4678c68..e7fea5d8 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice_calculation.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice_link.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice_link.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice_link.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice_variable.gitlab.md
index 8de3b423..6881fbe5 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
index 168a93e9..c33eca3d 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
index b9ecb554..2071065f 100644
--- a/tests/results/test_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6custom.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6custom.gitlab.md
index b5523bc4..551fabf5 100644
--- a/tests/results/test_read_write_secrets_errors/00_6custom.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6domainname.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6domainname.gitlab.md
index 9527be71..678901ce 100644
--- a/tests/results/test_read_write_secrets_errors/00_6domainname.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6domainname_params.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6domainname_params.gitlab.md
index 9527be71..678901ce 100644
--- a/tests/results/test_read_write_secrets_errors/00_6domainname_params.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6float.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6float.gitlab.md
index f11a2b3e..cf0278ac 100644
--- a/tests/results/test_read_write_secrets_errors/00_6float.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6integer.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6integer.gitlab.md
index e03d6049..a6f19431 100644
--- a/tests/results/test_read_write_secrets_errors/00_6integer.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6ip.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6ip.gitlab.md
index 2a392237..2413139d 100644
--- a/tests/results/test_read_write_secrets_errors/00_6ip.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6network.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6network.gitlab.md
index 7b83092b..e54e981c 100644
--- a/tests/results/test_read_write_secrets_errors/00_6network.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6number.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6number.gitlab.md
index e03d6049..a6f19431 100644
--- a/tests/results/test_read_write_secrets_errors/00_6number.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6port.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6port.gitlab.md
index f798b36e..de9998c6 100644
--- a/tests/results/test_read_write_secrets_errors/00_6port.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6regexp.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6regexp.gitlab.md
index 5bb0ecc5..4df05b9c 100644
--- a/tests/results/test_read_write_secrets_errors/00_6regexp.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6regexp_link.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6regexp_link.gitlab.md
index 78662b3d..dcba261b 100644
--- a/tests/results/test_read_write_secrets_errors/00_6regexp_link.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6secret.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6secret.gitlab.md
index a5ad62de..6ab62ba5 100644
--- a/tests/results/test_read_write_secrets_errors/00_6secret.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6secret_param.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6secret_param.gitlab.md
index bfcdfb21..3c99a59e 100644
--- a/tests/results/test_read_write_secrets_errors/00_6secret_param.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_6string.gitlab.md b/tests/results/test_read_write_secrets_errors/00_6string.gitlab.md
index 2bf4f050..50903d3b 100644
--- a/tests/results/test_read_write_secrets_errors/00_6string.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7choice_quote.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7choice_quote.gitlab.md
index 855be0be..6412e268 100644
--- a/tests/results/test_read_write_secrets_errors/00_7choice_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7help.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7help.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_secrets_errors/00_7help.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7help_quote.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7help_quote.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_secrets_errors/00_7help_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7help_sup.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7help_sup.gitlab.md
index eb15b6b0..485fa902 100644
--- a/tests/results/test_read_write_secrets_errors/00_7help_sup.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7value_doublequote.gitlab.md
index bf2d95ff..dbcc86ca 100644
--- a/tests/results/test_read_write_secrets_errors/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
index 8ea40872..ea568a74 100644
--- a/tests/results/test_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
index 4f180316..031eaba2 100644
--- a/tests/results/test_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_7value_quote.gitlab.md b/tests/results/test_read_write_secrets_errors/00_7value_quote.gitlab.md
index 0efb15df..c1f068e4 100644
--- a/tests/results/test_read_write_secrets_errors/00_7value_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_8calculation_information.gitlab.md b/tests/results/test_read_write_secrets_errors/00_8calculation_information.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/00_8calculation_information.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_8test.gitlab.md b/tests/results/test_read_write_secrets_errors/00_8test.gitlab.md
index 376b3698..1baaa150 100644
--- a/tests/results/test_read_write_secrets_errors/00_8test.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
index 03c1e925..817eba1c 100644
--- a/tests/results/test_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9choice_variables.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9choice_variables.gitlab.md
index 66c8d563..d637fe8f 100644
--- a/tests/results/test_read_write_secrets_errors/00_9choice_variables.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation.gitlab.md
index 0030f835..4e1c9404 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
index 2600b0bf..a6c70373 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
index 2600b0bf..a6c70373 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
index fa318034..8ac2fbc5 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
index ed9618c3..09957600 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
index ef79b2a0..f2c11cbf 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
index 0202954b..37b6e271 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
index 44ee875c..6ccdc39c 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_integer.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_integer.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_integer.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/00_9default_number.gitlab.md b/tests/results/test_read_write_secrets_errors/00_9default_number.gitlab.md
index 576459b7..96a1ec7b 100644
--- a/tests/results/test_read_write_secrets_errors/00_9default_number.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6boolean_multi.gitlab.md
index 0208adba..1b5ddbaf 100644
--- a/tests/results/test_read_write_secrets_errors/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6custom_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6custom_multi.gitlab.md
index 6c7c169d..fe278187 100644
--- a/tests/results/test_read_write_secrets_errors/01_6custom_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6float_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6float_multi.gitlab.md
index 27691fec..cdd7d5f7 100644
--- a/tests/results/test_read_write_secrets_errors/01_6float_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6integer_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6integer_multi.gitlab.md
index 1791d385..5520b354 100644
--- a/tests/results/test_read_write_secrets_errors/01_6integer_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
index 820c7901..562a9476 100644
--- a/tests/results/test_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6string_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6string_empty.gitlab.md
index b3c3aca5..c0d04605 100644
--- a/tests/results/test_read_write_secrets_errors/01_6string_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6string_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6string_multi.gitlab.md
index 185fe780..f153d85e 100644
--- a/tests/results/test_read_write_secrets_errors/01_6string_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_secrets_errors/01_6string_multi_length.gitlab.md
index 1e8506d9..20e34d9c 100644
--- a/tests/results/test_read_write_secrets_errors/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
index 906c468f..0b34f11e 100644
--- a/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
index 0c6780af..c7320ff3 100644
--- a/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
index 5f685d65..2d0fe5de 100644
--- a/tests/results/test_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
index 34332ad6..2c916332 100644
--- a/tests/results/test_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
index 6ee6fadd..fa647987 100644
--- a/tests/results/test_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
index 54a81124..9f3312cd 100644
--- a/tests/results/test_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/02_0tags.gitlab.md b/tests/results/test_read_write_secrets_errors/02_0tags.gitlab.md
index be417d38..6bf9a083 100644
--- a/tests/results/test_read_write_secrets_errors/02_0tags.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_0type_param.gitlab.md b/tests/results/test_read_write_secrets_errors/04_0type_param.gitlab.md
index 9107ce77..f5c8dcbc 100644
--- a/tests/results/test_read_write_secrets_errors/04_0type_param.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_secrets_errors/04_0type_param_integer.gitlab.md
index 8196c5aa..ed9c3171 100644
--- a/tests/results/test_read_write_secrets_errors/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1auto_save.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_read_write_secrets_errors/04_1auto_save.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
index 9d637a99..69370869 100644
--- a/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
index 4d7e42d0..26286a14 100644
--- a/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
index fb875c1b..fc3588d3 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
index fb875c1b..fc3588d3 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
index 077d2e8d..9c7fade8 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
index ce4f7100..f47efc1a 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
index b965c416..77ddcfa4 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
index 942c3e18..5301ef0e 100644
--- a/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
index 7714992d..cf82ab66 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
index 818189e3..d5851491 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
index e1b67211..ed0f7eb4 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
index 166e58bb..11508d86 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
index 9a2043db..93f0eca8 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
index 9a2043db..93f0eca8 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
index ac16037e..d17ca615 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
index a93d1f9d..68f6d7b6 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
index 166e58bb..11508d86 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
index 4c9987ce..b88f5ac0 100644
--- a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators.gitlab.md
index 4b79fd07..d0820056 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_differ.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_differ.gitlab.md
index e4a8851a..9045b80f 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_differ.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_multi.gitlab.md
index b47624bd..fdce67a7 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_multi2.gitlab.md
index b47624bd..fdce67a7 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_multi3.gitlab.md
index 36ce5327..8b6f0928 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_warnings.gitlab.md
index 779d7ea4..bc721dc0 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
index 779d7ea4..bc721dc0 100644
--- a/tests/results/test_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_secrets_errors/05_0multi_uniq.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_secrets_errors/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_read_write_secrets_errors/16_0redefine_description.gitlab.md b/tests/results/test_read_write_secrets_errors/16_0redefine_description.gitlab.md
index bc0e0f57..53759d6c 100644
--- a/tests/results/test_read_write_secrets_errors/16_0redefine_description.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
index 65a703b7..c8480962 100644
--- a/tests/results/test_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
index d1c74327..6ed65b51 100644
--- a/tests/results/test_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
index cae748e4..2f21ea69 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_choice.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_default.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_default.gitlab.md
index cae748e4..2f21ea69 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_default.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
index a4a70b02..575c9d5e 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_family.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_family.gitlab.md
index 3debe3fc..b352402d 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_help.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_help.gitlab.md
index 4905e4f3..911f0ede 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_help.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_multi.gitlab.md
index b39eca8b..15d20deb 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
index 91c91e01..f139d52e 100644
--- a/tests/results/test_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_5test_redefine.gitlab.md b/tests/results/test_read_write_secrets_errors/16_5test_redefine.gitlab.md
index 9de6a28a..c4bd3ac2 100644
--- a/tests/results/test_read_write_secrets_errors/16_5test_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_secrets_errors/16_6choice_redefine.gitlab.md
index 04eadb58..8b5c827e 100644
--- a/tests/results/test_read_write_secrets_errors/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
index 736f3374..13da6221 100644
--- a/tests/results/test_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/16exists_exists.gitlab.md b/tests/results/test_read_write_secrets_errors/16exists_exists.gitlab.md
index 3ce17976..7ebf626b 100644
--- a/tests/results/test_read_write_secrets_errors/16exists_exists.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0family_append.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0family_append.gitlab.md
index ba23a346..9cd6cb10 100644
--- a/tests/results/test_read_write_secrets_errors/20_0family_append.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0multi_family.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0multi_family.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_secrets_errors/20_0multi_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
index 9b3ed77e..05bc5a5c 100644
--- a/tests/results/test_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0multi_family_order.gitlab.md
index 79533047..830130f7 100644
--- a/tests/results/test_read_write_secrets_errors/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
index 5e1986f8..00ab0ffc 100644
--- a/tests/results/test_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
index 58e26e0b..bd07f99f 100644
--- a/tests/results/test_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
index 0f4f7add..abf1774b 100644
--- a/tests/results/test_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_7help_family.gitlab.md b/tests/results/test_read_write_secrets_errors/20_7help_family.gitlab.md
index 06503829..979e48be 100644
--- a/tests/results/test_read_write_secrets_errors/20_7help_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_secrets_errors/20_9default_information_parent.gitlab.md
index 06612855..de78e27a 100644
--- a/tests/results/test_read_write_secrets_errors/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/20_9family_absolute.gitlab.md b/tests/results/test_read_write_secrets_errors/20_9family_absolute.gitlab.md
index 1d6fe693..3566dc40 100644
--- a/tests/results/test_read_write_secrets_errors/20_9family_absolute.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
index ea6a9a50..865755c0 100644
--- a/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 387c771f..e236dd07 100644
--- a/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
index a20f8476..a1013df1 100644
--- a/tests/results/test_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
index 91c91e01..f139d52e 100644
--- a/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
index a5dc51d6..ffdb8edf 100644
--- a/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
index 04d73933..b19d8a8d 100644
--- a/tests/results/test_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
index 48c0eded..3ba8e0c1 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
index 68b48747..7b003d6b 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
index 6644a5a0..5304f9b0 100644
--- a/tests/results/test_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
index a2ef4be3..6ce7d9fe 100644
--- a/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
index a2ef4be3..6ce7d9fe 100644
--- a/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
index e998e2e0..383406f6 100644
--- a/tests/results/test_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
index 93cc57d5..8ff0a6a4 100644
--- a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
index 8b12948d..3fda66a8 100644
--- a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
index 648810ef..76da8059 100644
--- a/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index dda8c75e..9a7e4de1 100644
--- a/tests/results/test_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
index 446458ca..92a4ff85 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
index 446458ca..92a4ff85 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index 9dd196e8..cec531c7 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
index ab95c184..319982d9 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
index d98a8c54..57a526db 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
index 9520deb3..12a9af27 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
index 05209c4f..c3f5c57b 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
index 8a471b8b..d2775e4c 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
index 926d116f..9f6239fd 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index 15776bd1..9c792a4a 100644
--- a/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/41_0choice_leader.gitlab.md b/tests/results/test_read_write_secrets_errors/41_0choice_leader.gitlab.md
index f514fe01..f770a333 100644
--- a/tests/results/test_read_write_secrets_errors/41_0choice_leader.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
index 99d0a639..56263f31 100644
--- a/tests/results/test_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
index decc0823..6cb3a1f4 100644
--- a/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
index 818189e3..d5851491 100644
--- a/tests/results/test_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
index e14e1815..122086cb 100644
--- a/tests/results/test_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic.gitlab.md
index 597b65e4..da717c1f 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
index 597b65e4..da717c1f 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
index 1145a95e..78dd04ee 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
index a4e7410d..591b8ba7 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
index c14cebad..9b6db569 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
index 7c42eda0..ccb99a49 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
index 350be683..74cfa450 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
index c77ab031..0907aad9 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
index a30e8e0f..5b212df6 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 84755ea7..93493497 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_0family_mode.gitlab.md b/tests/results/test_read_write_secrets_errors/60_0family_mode.gitlab.md
index bb0b6fb0..703f83d3 100644
--- a/tests/results/test_read_write_secrets_errors/60_0family_mode.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
index 5ac7165a..11e94f8c 100644
--- a/tests/results/test_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 660d2e94..8340dd8a 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 11462c78..29bd3edc 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index e2d98b3a..54bbb0cf 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index e9ee0788..cfa58971 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
index 300a9574..7f76f7d0 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
index baf54d5c..b469bf68 100644
--- a/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
index 271b9dce..34caaf10 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
index 7ec673a6..8cbe3a4c 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index ebb0cf0c..af8535c1 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
index 0dde9a0c..ea198494 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index aa4ae725..2ec4d801 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
index eedcab93..f4be378e 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 09425121..35e567b3 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 3dda0c7a..fa2fa9a4 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
index 00e3dd56..f24d5d28 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
index e5485cee..1e96d586 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
index d42dbd9f..7d862519 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index aae73a1c..1bbbc545 100644
--- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
index 378a8686..05055749 100644
--- a/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
index 268be955..d0ff9f68 100644
--- a/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
index e7f36f00..72518de7 100644
--- a/tests/results/test_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
index 1d8fe3f4..1b2f28d7 100644
--- a/tests/results/test_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_read_write_secrets_errors/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
diff --git a/tests/results/test_secrets/00_0version_underscore.gitlab.md b/tests/results/test_secrets/00_0version_underscore.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/00_0version_underscore.gitlab.md
+++ b/tests/results/test_secrets/00_0version_underscore.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_1empty_variable.gitlab.md b/tests/results/test_secrets/00_1empty_variable.gitlab.md
index 01c71dc8..e4fe8476 100644
--- a/tests/results/test_secrets/00_1empty_variable.gitlab.md
+++ b/tests/results/test_secrets/00_1empty_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_2default_calculated.gitlab.md b/tests/results/test_secrets/00_2default_calculated.gitlab.md
index 39c62a4f..068a8789 100644
--- a/tests/results/test_secrets/00_2default_calculated.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_secrets/00_2default_calculated_multi.gitlab.md
index 71036e50..f80f7464 100644
--- a/tests/results/test_secrets/00_2default_calculated_multi.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_secrets/00_2default_calculated_params_permissive.gitlab.md
index 45ab455d..13866103 100644
--- a/tests/results/test_secrets/00_2default_calculated_params_permissive.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_params_permissive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_secrets/00_2default_calculated_variable.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_secrets/00_2default_calculated_variable.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_secrets/00_2default_calculated_variable_description.gitlab.md
index 85c584ff..38c887f5 100644
--- a/tests/results/test_secrets/00_2default_calculated_variable_description.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_variable_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
index bcc3639c..239329bf 100644
--- a/tests/results/test_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_secrets/00_2default_calculated_variable_transitive.gitlab.md
index a42b0d3d..ed65076a 100644
--- a/tests/results/test_secrets/00_2default_calculated_variable_transitive.gitlab.md
+++ b/tests/results/test_secrets/00_2default_calculated_variable_transitive.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_secrets/00_4load_subfolder.gitlab.md
index 0fc79241..923db5c2 100644
--- a/tests/results/test_secrets/00_4load_subfolder.gitlab.md
+++ b/tests/results/test_secrets/00_4load_subfolder.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_5load_notype.gitlab.md b/tests/results/test_secrets/00_5load_notype.gitlab.md
index 654a3e4e..61086f51 100644
--- a/tests/results/test_secrets/00_5load_notype.gitlab.md
+++ b/tests/results/test_secrets/00_5load_notype.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6boolean.gitlab.md b/tests/results/test_secrets/00_6boolean.gitlab.md
index 86d6e503..0595f04d 100644
--- a/tests/results/test_secrets/00_6boolean.gitlab.md
+++ b/tests/results/test_secrets/00_6boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_secrets/00_6boolean_no_mandatory.gitlab.md
index 82828bf8..fc977203 100644
--- a/tests/results/test_secrets/00_6boolean_no_mandatory.gitlab.md
+++ b/tests/results/test_secrets/00_6boolean_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice.gitlab.md b/tests/results/test_secrets/00_6choice.gitlab.md
index 1a3588f8..8982a592 100644
--- a/tests/results/test_secrets/00_6choice.gitlab.md
+++ b/tests/results/test_secrets/00_6choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_secrets/00_6choice_calculation.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_secrets/00_6choice_calculation.gitlab.md
+++ b/tests/results/test_secrets/00_6choice_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice_link.gitlab.md b/tests/results/test_secrets/00_6choice_link.gitlab.md
index 0c269df0..6d940990 100644
--- a/tests/results/test_secrets/00_6choice_link.gitlab.md
+++ b/tests/results/test_secrets/00_6choice_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice_variable.gitlab.md b/tests/results/test_secrets/00_6choice_variable.gitlab.md
index 974e965a..c96d0311 100644
--- a/tests/results/test_secrets/00_6choice_variable.gitlab.md
+++ b/tests/results/test_secrets/00_6choice_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_secrets/00_6choice_variable_link.gitlab.md
index 8034a11e..41365116 100644
--- a/tests/results/test_secrets/00_6choice_variable_link.gitlab.md
+++ b/tests/results/test_secrets/00_6choice_variable_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_secrets/00_6choice_variable_link2.gitlab.md
index 8199d2aa..7ba704fa 100644
--- a/tests/results/test_secrets/00_6choice_variable_link2.gitlab.md
+++ b/tests/results/test_secrets/00_6choice_variable_link2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6custom.gitlab.md b/tests/results/test_secrets/00_6custom.gitlab.md
index 83f6b103..0189c88d 100644
--- a/tests/results/test_secrets/00_6custom.gitlab.md
+++ b/tests/results/test_secrets/00_6custom.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6domainname.gitlab.md b/tests/results/test_secrets/00_6domainname.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_secrets/00_6domainname.gitlab.md
+++ b/tests/results/test_secrets/00_6domainname.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6domainname_params.gitlab.md b/tests/results/test_secrets/00_6domainname_params.gitlab.md
index 9ffe9ddd..ae7d094f 100644
--- a/tests/results/test_secrets/00_6domainname_params.gitlab.md
+++ b/tests/results/test_secrets/00_6domainname_params.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6float.gitlab.md b/tests/results/test_secrets/00_6float.gitlab.md
index a7ab1aab..da3b1e99 100644
--- a/tests/results/test_secrets/00_6float.gitlab.md
+++ b/tests/results/test_secrets/00_6float.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6integer.gitlab.md b/tests/results/test_secrets/00_6integer.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_secrets/00_6integer.gitlab.md
+++ b/tests/results/test_secrets/00_6integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6ip.gitlab.md b/tests/results/test_secrets/00_6ip.gitlab.md
index 9c677247..00e51197 100644
--- a/tests/results/test_secrets/00_6ip.gitlab.md
+++ b/tests/results/test_secrets/00_6ip.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6network.gitlab.md b/tests/results/test_secrets/00_6network.gitlab.md
index 7460b392..5dc5a8f7 100644
--- a/tests/results/test_secrets/00_6network.gitlab.md
+++ b/tests/results/test_secrets/00_6network.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6number.gitlab.md b/tests/results/test_secrets/00_6number.gitlab.md
index a61876fb..d113c3aa 100644
--- a/tests/results/test_secrets/00_6number.gitlab.md
+++ b/tests/results/test_secrets/00_6number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6port.gitlab.md b/tests/results/test_secrets/00_6port.gitlab.md
index ab32b34f..afa2f02e 100644
--- a/tests/results/test_secrets/00_6port.gitlab.md
+++ b/tests/results/test_secrets/00_6port.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6regexp.gitlab.md b/tests/results/test_secrets/00_6regexp.gitlab.md
index 63417c30..426174fc 100644
--- a/tests/results/test_secrets/00_6regexp.gitlab.md
+++ b/tests/results/test_secrets/00_6regexp.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6regexp_link.gitlab.md b/tests/results/test_secrets/00_6regexp_link.gitlab.md
index 4d8aeca3..8d215a98 100644
--- a/tests/results/test_secrets/00_6regexp_link.gitlab.md
+++ b/tests/results/test_secrets/00_6regexp_link.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6secret.gitlab.md b/tests/results/test_secrets/00_6secret.gitlab.md
index 33de27df..a968e0a0 100644
--- a/tests/results/test_secrets/00_6secret.gitlab.md
+++ b/tests/results/test_secrets/00_6secret.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6secret_param.gitlab.md b/tests/results/test_secrets/00_6secret_param.gitlab.md
index 08fa810f..82fa4804 100644
--- a/tests/results/test_secrets/00_6secret_param.gitlab.md
+++ b/tests/results/test_secrets/00_6secret_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_6string.gitlab.md b/tests/results/test_secrets/00_6string.gitlab.md
index dbbfb8dc..b10138f5 100644
--- a/tests/results/test_secrets/00_6string.gitlab.md
+++ b/tests/results/test_secrets/00_6string.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_7choice_quote.gitlab.md b/tests/results/test_secrets/00_7choice_quote.gitlab.md
index 177a0448..f876b5dd 100644
--- a/tests/results/test_secrets/00_7choice_quote.gitlab.md
+++ b/tests/results/test_secrets/00_7choice_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_7help.gitlab.md b/tests/results/test_secrets/00_7help.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_secrets/00_7help.gitlab.md
+++ b/tests/results/test_secrets/00_7help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_7help_quote.gitlab.md b/tests/results/test_secrets/00_7help_quote.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_secrets/00_7help_quote.gitlab.md
+++ b/tests/results/test_secrets/00_7help_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_7help_sup.gitlab.md b/tests/results/test_secrets/00_7help_sup.gitlab.md
index f0c9153d..b383890c 100644
--- a/tests/results/test_secrets/00_7help_sup.gitlab.md
+++ b/tests/results/test_secrets/00_7help_sup.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_secrets/00_7value_doublequote.gitlab.md
index 1c4e505c..cdcf0ee0 100644
--- a/tests/results/test_secrets/00_7value_doublequote.gitlab.md
+++ b/tests/results/test_secrets/00_7value_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_secrets/00_7value_doublequote2.gitlab.md
index b90fe30a..a663f439 100644
--- a/tests/results/test_secrets/00_7value_doublequote2.gitlab.md
+++ b/tests/results/test_secrets/00_7value_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_secrets/00_7value_doublequote3.gitlab.md
index 87a19973..e9fbd377 100644
--- a/tests/results/test_secrets/00_7value_doublequote3.gitlab.md
+++ b/tests/results/test_secrets/00_7value_doublequote3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_7value_quote.gitlab.md b/tests/results/test_secrets/00_7value_quote.gitlab.md
index 4808394f..788071c5 100644
--- a/tests/results/test_secrets/00_7value_quote.gitlab.md
+++ b/tests/results/test_secrets/00_7value_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_8calculation_information.gitlab.md b/tests/results/test_secrets/00_8calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/00_8calculation_information.gitlab.md
+++ b/tests/results/test_secrets/00_8calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_8test.gitlab.md b/tests/results/test_secrets/00_8test.gitlab.md
index 20fc8b67..80f2a92d 100644
--- a/tests/results/test_secrets/00_8test.gitlab.md
+++ b/tests/results/test_secrets/00_8test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_secrets/00_9choice_variable_multi.gitlab.md
index 84364537..cfde7abb 100644
--- a/tests/results/test_secrets/00_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_secrets/00_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9choice_variables.gitlab.md b/tests/results/test_secrets/00_9choice_variables.gitlab.md
index bb733356..443ac796 100644
--- a/tests/results/test_secrets/00_9choice_variables.gitlab.md
+++ b/tests/results/test_secrets/00_9choice_variables.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation.gitlab.md b/tests/results/test_secrets/00_9default_calculation.gitlab.md
index 7e2ae21e..e4f147c1 100644
--- a/tests/results/test_secrets/00_9default_calculation.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_secrets/00_9default_calculation_information.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/00_9default_calculation_information.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_information.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_secrets/00_9default_calculation_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_secrets/00_9default_calculation_information_other_variable.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_secrets/00_9default_calculation_multi_optional.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_secrets/00_9default_calculation_multi_optional.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_multi_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_secrets/00_9default_calculation_multi_optional2.gitlab.md
index 20eebcb3..eeffed5b 100644
--- a/tests/results/test_secrets/00_9default_calculation_multi_optional2.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_multi_optional2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_secrets/00_9default_calculation_multi_optional_default.gitlab.md
index c79080f9..4bf68821 100644
--- a/tests/results/test_secrets/00_9default_calculation_multi_optional_default.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_multi_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_secrets/00_9default_calculation_optional.gitlab.md
index f0b32acc..311464a5 100644
--- a/tests/results/test_secrets/00_9default_calculation_optional.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_secrets/00_9default_calculation_optional_exists.gitlab.md
index 7abd2d77..1f78057c 100644
--- a/tests/results/test_secrets/00_9default_calculation_optional_exists.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_optional_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_secrets/00_9default_calculation_param_optional.gitlab.md
index f0f23c84..e1e33391 100644
--- a/tests/results/test_secrets/00_9default_calculation_param_optional.gitlab.md
+++ b/tests/results/test_secrets/00_9default_calculation_param_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_secrets/00_9default_information_other_variable.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_secrets/00_9default_information_other_variable.gitlab.md
+++ b/tests/results/test_secrets/00_9default_information_other_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_secrets/00_9default_information_other_variable2.gitlab.md
index 610cf28a..e3061c15 100644
--- a/tests/results/test_secrets/00_9default_information_other_variable2.gitlab.md
+++ b/tests/results/test_secrets/00_9default_information_other_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/00_9default_integer.gitlab.md b/tests/results/test_secrets/00_9default_integer.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_secrets/00_9default_integer.gitlab.md
+++ b/tests/results/test_secrets/00_9default_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/00_9default_number.gitlab.md b/tests/results/test_secrets/00_9default_number.gitlab.md
index ecc5498e..be010c24 100644
--- a/tests/results/test_secrets/00_9default_number.gitlab.md
+++ b/tests/results/test_secrets/00_9default_number.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_secrets/01_6boolean_multi.gitlab.md
index de005048..643aaafb 100644
--- a/tests/results/test_secrets/01_6boolean_multi.gitlab.md
+++ b/tests/results/test_secrets/01_6boolean_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6custom_multi.gitlab.md b/tests/results/test_secrets/01_6custom_multi.gitlab.md
index 0df41f28..a173cac3 100644
--- a/tests/results/test_secrets/01_6custom_multi.gitlab.md
+++ b/tests/results/test_secrets/01_6custom_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6float_multi.gitlab.md b/tests/results/test_secrets/01_6float_multi.gitlab.md
index 68da89af..14c7b70f 100644
--- a/tests/results/test_secrets/01_6float_multi.gitlab.md
+++ b/tests/results/test_secrets/01_6float_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6integer_multi.gitlab.md b/tests/results/test_secrets/01_6integer_multi.gitlab.md
index e5df88d4..d2072ce7 100644
--- a/tests/results/test_secrets/01_6integer_multi.gitlab.md
+++ b/tests/results/test_secrets/01_6integer_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_secrets/01_6integer_multi_mandatory.gitlab.md
index ad7bc50a..7cdb234c 100644
--- a/tests/results/test_secrets/01_6integer_multi_mandatory.gitlab.md
+++ b/tests/results/test_secrets/01_6integer_multi_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/01_6string_empty.gitlab.md b/tests/results/test_secrets/01_6string_empty.gitlab.md
index 59150ea4..38a3619c 100644
--- a/tests/results/test_secrets/01_6string_empty.gitlab.md
+++ b/tests/results/test_secrets/01_6string_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6string_multi.gitlab.md b/tests/results/test_secrets/01_6string_multi.gitlab.md
index 44f3dd6c..4cf95050 100644
--- a/tests/results/test_secrets/01_6string_multi.gitlab.md
+++ b/tests/results/test_secrets/01_6string_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_secrets/01_6string_multi_length.gitlab.md
index 88fc625f..631d4c5e 100644
--- a/tests/results/test_secrets/01_6string_multi_length.gitlab.md
+++ b/tests/results/test_secrets/01_6string_multi_length.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_secrets/01_7value_multi_doublequote.gitlab.md
index 59d956eb..66904d69 100644
--- a/tests/results/test_secrets/01_7value_multi_doublequote.gitlab.md
+++ b/tests/results/test_secrets/01_7value_multi_doublequote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_secrets/01_7value_multi_doublequote2.gitlab.md
index 9b18effd..0a82d5af 100644
--- a/tests/results/test_secrets/01_7value_multi_doublequote2.gitlab.md
+++ b/tests/results/test_secrets/01_7value_multi_doublequote2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_secrets/01_7value_multi_quote.gitlab.md
index aa6d20f7..f953ff32 100644
--- a/tests/results/test_secrets/01_7value_multi_quote.gitlab.md
+++ b/tests/results/test_secrets/01_7value_multi_quote.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_secrets/01_8calculation_information_multi.gitlab.md
index abadb14f..283d94ef 100644
--- a/tests/results/test_secrets/01_8calculation_information_multi.gitlab.md
+++ b/tests/results/test_secrets/01_8calculation_information_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_secrets/01_9choice_variable_multi.gitlab.md
index ecdab50f..14a644db 100644
--- a/tests/results/test_secrets/01_9choice_variable_multi.gitlab.md
+++ b/tests/results/test_secrets/01_9choice_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_secrets/01_9choice_variable_optional.gitlab.md
index 18f277e0..2863165c 100644
--- a/tests/results/test_secrets/01_9choice_variable_optional.gitlab.md
+++ b/tests/results/test_secrets/01_9choice_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/02_0tags.gitlab.md b/tests/results/test_secrets/02_0tags.gitlab.md
index bf09c7ad..af040b6d 100644
--- a/tests/results/test_secrets/02_0tags.gitlab.md
+++ b/tests/results/test_secrets/02_0tags.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_0type_param.gitlab.md b/tests/results/test_secrets/04_0type_param.gitlab.md
index eac0da26..4b7f99b0 100644
--- a/tests/results/test_secrets/04_0type_param.gitlab.md
+++ b/tests/results/test_secrets/04_0type_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_secrets/04_0type_param_integer.gitlab.md
index 5b06f286..0ce8abaf 100644
--- a/tests/results/test_secrets/04_0type_param_integer.gitlab.md
+++ b/tests/results/test_secrets/04_0type_param_integer.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_1auto_save.gitlab.md b/tests/results/test_secrets/04_1auto_save.gitlab.md
index 77942c22..2d2d1fbc 100644
--- a/tests/results/test_secrets/04_1auto_save.gitlab.md
+++ b/tests/results/test_secrets/04_1auto_save.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_secrets/04_1auto_save_and_calculated.gitlab.md
index 63c7ae02..d7e48173 100644
--- a/tests/results/test_secrets/04_1auto_save_and_calculated.gitlab.md
+++ b/tests/results/test_secrets/04_1auto_save_and_calculated.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
index 10551877..55b5776a 100644
--- a/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
+++ b/tests/results/test_secrets/04_1auto_save_and_calculated_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_secrets/04_1auto_save_and_hidden.gitlab.md
index 85c7019d..bcf7ff49 100644
--- a/tests/results/test_secrets/04_1auto_save_and_hidden.gitlab.md
+++ b/tests/results/test_secrets/04_1auto_save_and_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden_2.gitlab.md
index 1e96555d..b6c9b41a 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden_2.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden_3.gitlab.md
index 2b084f0f..83e58822 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden_3.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden_3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden_4.gitlab.md
index f9a96148..a2670320 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden_4.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden_4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden_5.gitlab.md
index 1e67ef15..9aa189d6 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden_5.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden_5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_secrets/04_1default_calculation_hidden_6.gitlab.md
index 2c560f47..30a44aa9 100644
--- a/tests/results/test_secrets/04_1default_calculation_hidden_6.gitlab.md
+++ b/tests/results/test_secrets/04_1default_calculation_hidden_6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_boolean.gitlab.md
index b2129800..d89de0a2 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_boolean.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_optional.gitlab.md
index 56648503..86d7cc94 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_optional.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_optional_default.gitlab.md
index 346609c7..5fbf4a7b 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_optional_default.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_optional_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable10.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable10.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable10.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable2.gitlab.md
index 11f4b4be..0b6acc2c 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable2.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable3.gitlab.md
index e075db98..a19e6418 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable3.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable4.gitlab.md
index 431a73f1..440396d9 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable4.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable4.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable5.gitlab.md
index 3cf5b9c5..bf47084a 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable5.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable5.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable6.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable6.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable6.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable7.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable7.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable7.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable8.gitlab.md
index 2754f1a6..2ecc7531 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable8.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable8.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable9.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable9.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable9.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable_multi.gitlab.md
index 4d0e4fd4..e1b77616 100644
--- a/tests/results/test_secrets/04_5disabled_calculation_variable_multi.gitlab.md
+++ b/tests/results/test_secrets/04_5disabled_calculation_variable_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators.gitlab.md b/tests/results/test_secrets/04_5validators.gitlab.md
index 05f8b0d8..659464a6 100644
--- a/tests/results/test_secrets/04_5validators.gitlab.md
+++ b/tests/results/test_secrets/04_5validators.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/04_5validators_differ.gitlab.md b/tests/results/test_secrets/04_5validators_differ.gitlab.md
index 5c8ab15a..9ba018f5 100644
--- a/tests/results/test_secrets/04_5validators_differ.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_differ.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators_multi.gitlab.md b/tests/results/test_secrets/04_5validators_multi.gitlab.md
index a25dc817..67bf484a 100644
--- a/tests/results/test_secrets/04_5validators_multi.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_secrets/04_5validators_multi2.gitlab.md
index bd98accf..e8bda7df 100644
--- a/tests/results/test_secrets/04_5validators_multi2.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_multi2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_secrets/04_5validators_multi3.gitlab.md
index bd788a0d..25c9e383 100644
--- a/tests/results/test_secrets/04_5validators_multi3.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_multi3.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_secrets/04_5validators_warnings.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_secrets/04_5validators_warnings.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_warnings.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_secrets/04_5validators_warnings_all.gitlab.md
index 8e19f12c..c502c75e 100644
--- a/tests/results/test_secrets/04_5validators_warnings_all.gitlab.md
+++ b/tests/results/test_secrets/04_5validators_warnings_all.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_secrets/05_0multi_not_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_secrets/05_0multi_not_uniq.gitlab.md
+++ b/tests/results/test_secrets/05_0multi_not_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_secrets/05_0multi_uniq.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_secrets/05_0multi_uniq.gitlab.md
+++ b/tests/results/test_secrets/05_0multi_uniq.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_secrets/12_1auto_save_expert.gitlab.md
index 2f3b7421..57054d05 100644
--- a/tests/results/test_secrets/12_1auto_save_expert.gitlab.md
+++ b/tests/results/test_secrets/12_1auto_save_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_0redefine_description.gitlab.md b/tests/results/test_secrets/16_0redefine_description.gitlab.md
index 784afb0d..2f71cc1a 100644
--- a/tests/results/test_secrets/16_0redefine_description.gitlab.md
+++ b/tests/results/test_secrets/16_0redefine_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_secrets/16_3family_empty_at_ends.gitlab.md
index 949ee366..6b55da95 100644
--- a/tests/results/test_secrets/16_3family_empty_at_ends.gitlab.md
+++ b/tests/results/test_secrets/16_3family_empty_at_ends.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_secrets/16_5exists_nonexists.gitlab.md
index 328cb9b9..9487099b 100644
--- a/tests/results/test_secrets/16_5exists_nonexists.gitlab.md
+++ b/tests/results/test_secrets/16_5exists_nonexists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_secrets/16_5exists_redefine.gitlab.md
index c32c1bb6..c0b17e62 100644
--- a/tests/results/test_secrets/16_5exists_redefine.gitlab.md
+++ b/tests/results/test_secrets/16_5exists_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_secrets/16_5redefine_calculation.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_secrets/16_5redefine_calculation.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_secrets/16_5redefine_choice.gitlab.md
index 6093115e..e0cbfbd7 100644
--- a/tests/results/test_secrets/16_5redefine_choice.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_choice.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_5redefine_default.gitlab.md b/tests/results/test_secrets/16_5redefine_default.gitlab.md
index ef270ebf..3c4178cc 100644
--- a/tests/results/test_secrets/16_5redefine_default.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_default.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_secrets/16_5redefine_default_calculation.gitlab.md
index 7adb3989..74f49299 100644
--- a/tests/results/test_secrets/16_5redefine_default_calculation.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_5redefine_family.gitlab.md b/tests/results/test_secrets/16_5redefine_family.gitlab.md
index f350721c..54ad1d4b 100644
--- a/tests/results/test_secrets/16_5redefine_family.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_5redefine_help.gitlab.md b/tests/results/test_secrets/16_5redefine_help.gitlab.md
index f341062f..068fa3d9 100644
--- a/tests/results/test_secrets/16_5redefine_help.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_help.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_secrets/16_5redefine_hidden.gitlab.md
index 0683db43..73993b0b 100644
--- a/tests/results/test_secrets/16_5redefine_hidden.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_secrets/16_5redefine_multi.gitlab.md
index 8408c43b..ea86d7b7 100644
--- a/tests/results/test_secrets/16_5redefine_multi.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_secrets/16_5redefine_remove_disable_calculation.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_secrets/16_5redefine_remove_disable_calculation.gitlab.md
+++ b/tests/results/test_secrets/16_5redefine_remove_disable_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_5test_redefine.gitlab.md b/tests/results/test_secrets/16_5test_redefine.gitlab.md
index f7957e9f..52893996 100644
--- a/tests/results/test_secrets/16_5test_redefine.gitlab.md
+++ b/tests/results/test_secrets/16_5test_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_secrets/16_6choice_redefine.gitlab.md
index 7593de1c..23bb13ad 100644
--- a/tests/results/test_secrets/16_6choice_redefine.gitlab.md
+++ b/tests/results/test_secrets/16_6choice_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_secrets/16_6exists_redefine_family.gitlab.md
index 85954351..20305fc6 100644
--- a/tests/results/test_secrets/16_6exists_redefine_family.gitlab.md
+++ b/tests/results/test_secrets/16_6exists_redefine_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/16exists_exists.gitlab.md b/tests/results/test_secrets/16exists_exists.gitlab.md
index baec9d68..53c920b3 100644
--- a/tests/results/test_secrets/16exists_exists.gitlab.md
+++ b/tests/results/test_secrets/16exists_exists.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_secrets/17_5redefine_leadership.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_secrets/17_5redefine_leadership.gitlab.md
+++ b/tests/results/test_secrets/17_5redefine_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/20_0family_append.gitlab.md b/tests/results/test_secrets/20_0family_append.gitlab.md
index fd05fd81..af742066 100644
--- a/tests/results/test_secrets/20_0family_append.gitlab.md
+++ b/tests/results/test_secrets/20_0family_append.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_0multi_family.gitlab.md b/tests/results/test_secrets/20_0multi_family.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_secrets/20_0multi_family.gitlab.md
+++ b/tests/results/test_secrets/20_0multi_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_secrets/20_0multi_family_basic.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_secrets/20_0multi_family_basic.gitlab.md
+++ b/tests/results/test_secrets/20_0multi_family_basic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_secrets/20_0multi_family_expert.gitlab.md
index 2203014b..049afbe0 100644
--- a/tests/results/test_secrets/20_0multi_family_expert.gitlab.md
+++ b/tests/results/test_secrets/20_0multi_family_expert.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_secrets/20_0multi_family_order.gitlab.md
index 7136c653..aabf89a8 100644
--- a/tests/results/test_secrets/20_0multi_family_order.gitlab.md
+++ b/tests/results/test_secrets/20_0multi_family_order.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_secrets/20_0validators_differ_redefine.gitlab.md
index efa85690..8862adb9 100644
--- a/tests/results/test_secrets/20_0validators_differ_redefine.gitlab.md
+++ b/tests/results/test_secrets/20_0validators_differ_redefine.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_secrets/20_2family_looks_like_dynamic.gitlab.md
index 2aff872c..4ef5c21e 100644
--- a/tests/results/test_secrets/20_2family_looks_like_dynamic.gitlab.md
+++ b/tests/results/test_secrets/20_2family_looks_like_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_secrets/20_2family_looks_like_variable.gitlab.md
index be283dbe..df22aa79 100644
--- a/tests/results/test_secrets/20_2family_looks_like_variable.gitlab.md
+++ b/tests/results/test_secrets/20_2family_looks_like_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/20_7help_family.gitlab.md b/tests/results/test_secrets/20_7help_family.gitlab.md
index 829f9137..0657a345 100644
--- a/tests/results/test_secrets/20_7help_family.gitlab.md
+++ b/tests/results/test_secrets/20_7help_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_secrets/20_9default_information_parent.gitlab.md
index 44f9c809..6062711a 100644
--- a/tests/results/test_secrets/20_9default_information_parent.gitlab.md
+++ b/tests/results/test_secrets/20_9default_information_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/20_9family_absolute.gitlab.md b/tests/results/test_secrets/20_9family_absolute.gitlab.md
index e385a38a..05407311 100644
--- a/tests/results/test_secrets/20_9family_absolute.gitlab.md
+++ b/tests/results/test_secrets/20_9family_absolute.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_secrets/24_0family_hidden_condition_sub_family.gitlab.md
index 2bc9e70b..b8faa9ea 100644
--- a/tests/results/test_secrets/24_0family_hidden_condition_sub_family.gitlab.md
+++ b/tests/results/test_secrets/24_0family_hidden_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
index 322c9c27..21fc5580 100644
--- a/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
+++ b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
index c5cf527f..2404fc9d 100644
--- a/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
+++ b/tests/results/test_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_secrets/24_0family_mandatory_condition.gitlab.md
index 45f44c06..1f82ad09 100644
--- a/tests/results/test_secrets/24_0family_mandatory_condition.gitlab.md
+++ b/tests/results/test_secrets/24_0family_mandatory_condition.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_secrets/24_0family_mandatory_condition_variable.gitlab.md
index cd42008f..4b597f6c 100644
--- a/tests/results/test_secrets/24_0family_mandatory_condition_variable.gitlab.md
+++ b/tests/results/test_secrets/24_0family_mandatory_condition_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_secrets/24_7validators_variable_optional.gitlab.md
index 0bb49bec..feddb3f8 100644
--- a/tests/results/test_secrets/24_7validators_variable_optional.gitlab.md
+++ b/tests/results/test_secrets/24_7validators_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_0leadership.gitlab.md b/tests/results/test_secrets/40_0leadership.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_secrets/40_0leadership.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_secrets/40_0leadership_diff_name.gitlab.md
index 3a30e8ac..c1e2fdfb 100644
--- a/tests/results/test_secrets/40_0leadership_diff_name.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_diff_name.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_secrets/40_0leadership_follower_default_calculation.gitlab.md
index 1caa8e50..907b2d32 100644
--- a/tests/results/test_secrets/40_0leadership_follower_default_calculation.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_follower_default_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_secrets/40_0leadership_follower_default_value.gitlab.md
index 91f0e40e..b223dd92 100644
--- a/tests/results/test_secrets/40_0leadership_follower_default_value.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_follower_default_value.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_secrets/40_0leadership_leader_follower.gitlab.md
index 36a5929b..e7fefe90 100644
--- a/tests/results/test_secrets/40_0leadership_leader_follower.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_secrets/40_0leadership_leader_not_multi.gitlab.md
index ed588ffb..e2e81af9 100644
--- a/tests/results/test_secrets/40_0leadership_leader_not_multi.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_leader_not_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_secrets/40_0leadership_reduce.gitlab.md
index c44fa8a1..76578b9d 100644
--- a/tests/results/test_secrets/40_0leadership_reduce.gitlab.md
+++ b/tests/results/test_secrets/40_0leadership_reduce.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_secrets/40_1leadership_append_follower.gitlab.md
index 5b17990a..46c347af 100644
--- a/tests/results/test_secrets/40_1leadership_append_follower.gitlab.md
+++ b/tests/results/test_secrets/40_1leadership_append_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_secrets/40_2leadership_calculation_index.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_secrets/40_2leadership_calculation_index.gitlab.md
+++ b/tests/results/test_secrets/40_2leadership_calculation_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_secrets/40_2leadership_calculation_index_2.gitlab.md
index a994e317..4189747c 100644
--- a/tests/results/test_secrets/40_2leadership_calculation_index_2.gitlab.md
+++ b/tests/results/test_secrets/40_2leadership_calculation_index_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_secrets/40_6leadership_follower_multi.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_secrets/40_6leadership_follower_multi.gitlab.md
+++ b/tests/results/test_secrets/40_6leadership_follower_multi.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
index d4f7472b..9a0f7b0c 100644
--- a/tests/results/test_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
+++ b/tests/results/test_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_secrets/40_8calculation_boolean.gitlab.md
index 7f77268a..721fc35a 100644
--- a/tests/results/test_secrets/40_8calculation_boolean.gitlab.md
+++ b/tests/results/test_secrets/40_8calculation_boolean.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_secrets/40_8calculation_multi_variable.gitlab.md
index 813cf014..27c9b121 100644
--- a/tests/results/test_secrets/40_8calculation_multi_variable.gitlab.md
+++ b/tests/results/test_secrets/40_8calculation_multi_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_secrets/40_8calculation_multi_variable_parent.gitlab.md
index 869ed561..bf03b982 100644
--- a/tests/results/test_secrets/40_8calculation_multi_variable_parent.gitlab.md
+++ b/tests/results/test_secrets/40_8calculation_multi_variable_parent.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_secrets/40_8calculation_multi_variable_parent2.gitlab.md
index 3bc917c1..d518fa0f 100644
--- a/tests/results/test_secrets/40_8calculation_multi_variable_parent2.gitlab.md
+++ b/tests/results/test_secrets/40_8calculation_multi_variable_parent2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
index 2fddeb53..bd54df8e 100644
--- a/tests/results/test_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
+++ b/tests/results/test_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
index 34e522cf..b208ed53 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
index 188e463d..0c949d51 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
index aab59100..19f6e151 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-follower.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-follower.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
index 232f60ca..2f899d19 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
index c2ecdfd5..e4cab6a5 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-outside-leader.gitlab.md
index 4804e667..cfa925ab 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-outside-leader.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-outside-leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-variable.gitlab.md
index 0f237bc7..bce610b9 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-variable.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
index b84c46cf..b8ce2709 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
index c19c95a4..bbf5f4e4 100644
--- a/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
+++ b/tests/results/test_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/41_0choice_leader.gitlab.md b/tests/results/test_secrets/41_0choice_leader.gitlab.md
index 8c662918..893b5082 100644
--- a/tests/results/test_secrets/41_0choice_leader.gitlab.md
+++ b/tests/results/test_secrets/41_0choice_leader.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_secrets/44_0leadership_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_secrets/44_0leadership_hidden.gitlab.md
+++ b/tests/results/test_secrets/44_0leadership_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_secrets/44_0leadership_leader_hidden.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_secrets/44_0leadership_leader_hidden.gitlab.md
+++ b/tests/results/test_secrets/44_0leadership_leader_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_secrets/44_1leadership_append_hidden_follower.gitlab.md
index f357b66a..b238b781 100644
--- a/tests/results/test_secrets/44_1leadership_append_hidden_follower.gitlab.md
+++ b/tests/results/test_secrets/44_1leadership_append_hidden_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_secrets/44_4disabled_calcultion_follower_index.gitlab.md
index 2e1c755e..b4bfe591 100644
--- a/tests/results/test_secrets/44_4disabled_calcultion_follower_index.gitlab.md
+++ b/tests/results/test_secrets/44_4disabled_calcultion_follower_index.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_secrets/44_4leadership_mandatory.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_secrets/44_4leadership_mandatory.gitlab.md
+++ b/tests/results/test_secrets/44_4leadership_mandatory.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_secrets/44_4leadership_mandatory_follower.gitlab.md
index c4c5be20..cbd4b4ce 100644
--- a/tests/results/test_secrets/44_4leadership_mandatory_follower.gitlab.md
+++ b/tests/results/test_secrets/44_4leadership_mandatory_follower.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
index 47129952..c6df65ba 100644
--- a/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
+++ b/tests/results/test_secrets/44_5leadership_leader_hidden_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
index d641a7c6..0d8ddabc 100644
--- a/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
+++ b/tests/results/test_secrets/44_6leadership_follower_disabled_calculation.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_secrets/60_0family_dynamic.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_secrets/60_0family_dynamic.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_1_1.gitlab.md
index ef5fa531..59169a52 100644
--- a/tests/results/test_secrets/60_0family_dynamic_1_1.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_1_1.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_1_1_empty.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_secrets/60_0family_dynamic_1_1_empty.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_1_1_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_empty.gitlab.md
index 11337286..2eedee57 100644
--- a/tests/results/test_secrets/60_0family_dynamic_empty.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_forbidden_char.gitlab.md
index 9be60379..c016dc50 100644
--- a/tests/results/test_secrets/60_0family_dynamic_forbidden_char.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_forbidden_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_no_description.gitlab.md
index 9a8ccd94..0b1a346f 100644
--- a/tests/results/test_secrets/60_0family_dynamic_no_description.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_no_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_no_description_empty.gitlab.md
index 4d41595e..fe2a0c74 100644
--- a/tests/results/test_secrets/60_0family_dynamic_no_description_empty.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_no_description_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_source_hidden.gitlab.md
index 3205ecd0..4d17de1f 100644
--- a/tests/results/test_secrets/60_0family_dynamic_source_hidden.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_source_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_static.gitlab.md
index 8eed34e9..8b92f789 100644
--- a/tests/results/test_secrets/60_0family_dynamic_static.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_static.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_test.gitlab.md
index cbb385a4..5448bed1 100644
--- a/tests/results/test_secrets/60_0family_dynamic_test.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_test.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_upper_char.gitlab.md
index d670a1ca..d199d59d 100644
--- a/tests/results/test_secrets/60_0family_dynamic_upper_char.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_upper_char.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_variable_empty.gitlab.md
index 72afa6b8..4a815f7b 100644
--- a/tests/results/test_secrets/60_0family_dynamic_variable_empty.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_variable_optional.gitlab.md
index 5ec319e4..fc8c98bd 100644
--- a/tests/results/test_secrets/60_0family_dynamic_variable_optional.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_variable_optional.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_variable_suffix.gitlab.md
index ee4150bd..accc8183 100644
--- a/tests/results/test_secrets/60_0family_dynamic_variable_suffix.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_variable_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
index 00092e45..78ff54b1 100644
--- a/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
+++ b/tests/results/test_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_0family_hidden.gitlab.md b/tests/results/test_secrets/60_0family_hidden.gitlab.md
index 94c94c35..b0dfacb0 100644
--- a/tests/results/test_secrets/60_0family_hidden.gitlab.md
+++ b/tests/results/test_secrets/60_0family_hidden.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/60_0family_mode.gitlab.md b/tests/results/test_secrets/60_0family_mode.gitlab.md
index 5521ca8f..4c4e33b2 100644
--- a/tests/results/test_secrets/60_0family_mode.gitlab.md
+++ b/tests/results/test_secrets/60_0family_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_secrets/60_1family_dynamic_jinja.gitlab.md
index 90af5689..43792ecc 100644
--- a/tests/results/test_secrets/60_1family_dynamic_jinja.gitlab.md
+++ b/tests/results/test_secrets/60_1family_dynamic_jinja.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
index 6f8ab828..d4d3d0ff 100644
--- a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
index 86363ffe..928e0edb 100644
--- a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
index 9f983822..6c2b0028 100644
--- a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
index 326efe38..e6c39a0f 100644
--- a/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_outside_calc.gitlab.md
index dea02a3b..72b3a211 100644
--- a/tests/results/test_secrets/60_2family_dynamic_outside_calc.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_outside_calc.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
index 31a7194d..c06ebd69 100644
--- a/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
+++ b/tests/results/test_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md
index 9cc5101f..93da88e4 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
index e3ca69d6..e2841328 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
index 5edd9688..e552ab9d 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
index 518cc832..6961b4c7 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [- Default value -]
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
index 64c19a1e..202300bf 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
index edda2356..6939f373 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_variable.gitlab.md
index 7dc20229..d086e7fc 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_variable.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
index 9fa8d78b..60a67d96 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
index 569dd75b..e38ff159 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
index af136a9f..a4e8b71c 100644
--- a/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
index 09178a3c..0e972fcb 100644
--- a/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Unmodifiable variable +]
> - [- Default value -]
diff --git a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
index 214264e1..b35a2b76 100644
--- a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
index d451f700..7a9755ed 100644
--- a/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
+++ b/tests/results/test_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_secrets/60_6family_dynamic_leadership.gitlab.md
index 29d9a89f..80f945ed 100644
--- a/tests/results/test_secrets/60_6family_dynamic_leadership.gitlab.md
+++ b/tests/results/test_secrets/60_6family_dynamic_leadership.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_secrets/60_6family_dynamic_leadership_empty.gitlab.md
index 1dc838cd..47886661 100644
--- a/tests/results/test_secrets/60_6family_dynamic_leadership_empty.gitlab.md
+++ b/tests/results/test_secrets/60_6family_dynamic_leadership_empty.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/results/test_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_secrets/60_9family_dynamic_calc_both.gitlab.md
index b2e39e5a..709ef1f0 100644
--- a/tests/results/test_secrets/60_9family_dynamic_calc_both.gitlab.md
+++ b/tests/results/test_secrets/60_9family_dynamic_calc_both.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
> - (:hourglass_flowing_sand: Original default value)
diff --git a/tests/results/test_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_secrets/68_0family_leadership_mode.gitlab.md
index ff11578a..e1c66d7a 100644
--- a/tests/results/test_secrets/68_0family_leadership_mode.gitlab.md
+++ b/tests/results/test_secrets/68_0family_leadership_mode.gitlab.md
@@ -1,6 +1,5 @@
-> [!NOTE]
+> [!note] Caption:
>
-> **Caption:**
> - Variable
> - [+ Modified value +]
diff --git a/tests/test_layers.py b/tests/test_layers.py
index 5da8a26e..6bac9424 100644
--- a/tests/test_layers.py
+++ b/tests/test_layers.py
@@ -1,5 +1,6 @@
from pathlib import Path
from rougail import Rougail
+from tiramisu import MetaConfig
from rougail.output_display import RougailOutputDisplay as RougailOutput
from rougail_tests.utils import get_rougail_config
@@ -8,18 +9,22 @@ from rougail_tests.utils import get_rougail_config
EXT = {'console': 'sh', 'github': 'md', 'gitlab': 'gitlab.md'}
-def test_error_mandatory_hidden():
+def test_layers():
layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}}
rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False)
rougailconfig['step.output'] = 'display'
rougailconfig["display.console.max_width"] = 200
rougail = Rougail(rougailconfig)
- config = rougail.run()
- config.information.set("description_type", "description")
- config.property.read_only()
+ config = rougail.run(name="source3")
+ metaconfig1 = MetaConfig([config], name="source2")
+ metaconfig2 = MetaConfig([metaconfig1], name="source1")
+ metaconfig2.property.read_only()
+ metaconfig1.owner.set(metaconfig1.path())
+ metaconfig2.owner.set(metaconfig2.path())
+ metaconfig2.information.set("description_type", "description")
for output_format, ext in EXT.items():
rougailconfig['display.output_format'] = output_format
- no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas).run()
+ no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas, root_config=metaconfig2, config_owner_is_path=True).run()
assert no_pb == True
output_file = Path(__file__).parent / 'layers-results' / f'display.{ext}'
if not output_file.is_file():
@@ -30,3 +35,126 @@ def test_error_mandatory_hidden():
with output_file.open() as outfh:
attented_output = outfh.read()
assert generated_output == attented_output, f'filename {output_file}'
+
+
+def set_value(config):
+ config.option("a_variable").value.set("a modified value")
+ config.option("a_variable").information.set("loaded_from", config.name())
+
+
+def test_layers_values_config2():
+ layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}}
+ rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False)
+ rougailconfig['step.output'] = 'display'
+ rougailconfig["display.console.max_width"] = 200
+ rougail = Rougail(rougailconfig)
+ config = rougail.run(name="source3")
+ metaconfig1 = MetaConfig([config], name="source2")
+ metaconfig2 = MetaConfig([metaconfig1], name="source1")
+ metaconfig2.property.read_only()
+ metaconfig2.information.set("description_type", "description")
+ metaconfig1.owner.set(metaconfig1.path())
+ metaconfig2.owner.set(metaconfig2.path())
+ set_value(config)
+ for output_format, ext in EXT.items():
+ rougailconfig['display.output_format'] = output_format
+ no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas, root_config=metaconfig2, config_owner_is_path=True).run()
+ assert no_pb == True
+ output_file = Path(__file__).parent / 'layers-values-config-results' / f'display.{ext}'
+ if not output_file.is_file():
+ if not output_file.parent.is_dir():
+ output_file.parent.mkdir()
+ with output_file.open('w') as outfh:
+ outfh.write(generated_output)
+ with output_file.open() as outfh:
+ attented_output = outfh.read()
+ assert generated_output == attented_output, f'filename {output_file}'
+
+
+def test_layers_values_metaconfig1():
+ layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}}
+ rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False)
+ rougailconfig['step.output'] = 'display'
+ rougailconfig["display.console.max_width"] = 200
+ rougail = Rougail(rougailconfig)
+ config = rougail.run(name="source3")
+ metaconfig1 = MetaConfig([config], name="source2")
+ metaconfig2 = MetaConfig([metaconfig1], name="source1")
+ metaconfig2.property.read_only()
+ metaconfig2.information.set("description_type", "description")
+ metaconfig1.owner.set(metaconfig1.path())
+ metaconfig2.owner.set(metaconfig2.path())
+ set_value(metaconfig1)
+ for output_format, ext in EXT.items():
+ rougailconfig['display.output_format'] = output_format
+ no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas, root_config=metaconfig2, config_owner_is_path=True).run()
+ assert no_pb == True
+ output_file = Path(__file__).parent / 'layers-values-metaconfig1-results' / f'display.{ext}'
+ if not output_file.is_file():
+ if not output_file.parent.is_dir():
+ output_file.parent.mkdir()
+ with output_file.open('w') as outfh:
+ outfh.write(generated_output)
+ with output_file.open() as outfh:
+ attented_output = outfh.read()
+ assert generated_output == attented_output, f'filename {output_file}'
+
+
+def test_layers_values_metaconfig2():
+ layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}}
+ rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False)
+ rougailconfig['step.output'] = 'display'
+ rougailconfig["display.console.max_width"] = 200
+ rougail = Rougail(rougailconfig)
+ config = rougail.run(name="source3")
+ metaconfig1 = MetaConfig([config], name="source2")
+ metaconfig2 = MetaConfig([metaconfig1], name="source1")
+ metaconfig2.information.set("description_type", "description")
+ metaconfig1.owner.set(metaconfig1.path())
+ metaconfig2.owner.set(metaconfig2.path())
+ set_value(metaconfig2)
+ metaconfig2.property.read_only()
+ for output_format, ext in EXT.items():
+ rougailconfig['display.output_format'] = output_format
+ no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas, root_config=metaconfig2, config_owner_is_path=True).run()
+ assert no_pb == True
+ output_file = Path(__file__).parent / 'layers-values-metaconfig2-results' / f'display.{ext}'
+ if not output_file.is_file():
+ if not output_file.parent.is_dir():
+ output_file.parent.mkdir()
+ with output_file.open('w') as outfh:
+ outfh.write(generated_output)
+ with output_file.open() as outfh:
+ attented_output = outfh.read()
+ assert generated_output == attented_output, f'filename {output_file}'
+
+
+def test_layers_values_metaconfig_mix():
+ layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}}
+ rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False)
+ rougailconfig['step.output'] = 'display'
+ rougailconfig["display.console.max_width"] = 200
+ rougail = Rougail(rougailconfig)
+ config = rougail.run(name="source3")
+ metaconfig1 = MetaConfig([config], name="source2")
+ metaconfig2 = MetaConfig([metaconfig1], name="source1")
+ metaconfig2.information.set("description_type", "description")
+ metaconfig1.owner.set(metaconfig1.path())
+ metaconfig2.owner.set(metaconfig2.path())
+ set_value(config)
+ set_value(metaconfig1)
+ set_value(metaconfig2)
+ metaconfig2.property.read_only()
+ for output_format, ext in EXT.items():
+ rougailconfig['display.output_format'] = output_format
+ no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, layer_datas=layer_datas, root_config=metaconfig2, config_owner_is_path=True).run()
+ assert no_pb == True
+ output_file = Path(__file__).parent / 'layers-values-metaconfig-mix-results' / f'display.{ext}'
+ if not output_file.is_file():
+ if not output_file.parent.is_dir():
+ output_file.parent.mkdir()
+ with output_file.open('w') as outfh:
+ outfh.write(generated_output)
+ with output_file.open() as outfh:
+ attented_output = outfh.read()
+ assert generated_output == attented_output, f'filename {output_file}'