I have the following yaml:
paths:
patha: /path/to/root/a
pathb: /path/to/root/b
pathc: /path/to/root/c
How can i "normalise" this, by removing /path/to/root/
from the three paths, and have it as its own setting, something like:
paths:
root: /path/to/root/
patha: *root* + a
pathb: *root* + b
pathc: *root* + c
Obviously thats invalid, i just made it up. Whats the real syntax? Can it be done?
Thanks