examples/linked.md in markdown_exec-1.8.5 vs examples/linked.md in markdown_exec-1.8.6
- old
+ new
@@ -1,8 +1,9 @@
Demonstrate setting a variable interactively for use in generated scripts.
```opts :(document_options)
+dump_inherited_lines: true
pause_after_script_execution: false
user_must_approve: false
```
::: Set VARIABLE to "A"
@@ -13,17 +14,35 @@
```bash :(set_to_A)
VARIABLE=A
```
+```link :set_to_A_eval +(set_to_A_eval)
+block: display_variable
+eval: true
+```
+
+```bash :(set_to_A_eval)
+echo VARIABLE=A
+```
+
::: Set VARIABLE to "B"
```link :set_to_B +(set_to_B)
block: display_variable
```
```bash :(set_to_B)
VARIABLE=B
+```
+
+```link :set_to_B_eval +(set_to_B_eval)
+block: display_variable
+eval: true
+```
+
+```bash :(set_to_B_eval)
+echo VARIABLE=B
```
::: Display value of VARIABLE
```bash :display_variable