Oct 28, 2022
YAML generally does not have a feature for transforming data and that's why we need template engine.
e.g. the following works:
```
a1: &anchor1 A
a2: &anchor2 B
b1: *anchor1
b2: *anchor2
```
but this doesn't work:
```
b3: www.*anchor1.*anchor2.com
```