1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00

update doc

This commit is contained in:
deadc0de6
2020-08-25 08:24:09 +02:00
parent e1280dca9b
commit 958f9b052e

View File

@@ -52,15 +52,15 @@ Only the higher layer is accessible to other classes of dotdrop.
* config files do not have access to variables
defined above in the import tree
This will result with `var0 = "echo test"` and not `var0 = test`
This will result with `dvar0 = "test"` and `var0 = "echo test"` (**not** `var0 = test`)
```yaml
variables:
var0: "{{@@ dvar4 @@}}"
var0: "{{@@ dvar0 @@}}"
dynvariables:
dvar0: "echo test"
```
This will result with `dvar0 = "test"`
This will result with `dvar0 = "test"` and `var0 = "test"`
```yaml
variables:
var0: "test"