ilexconf icon indicating copy to clipboard operation
ilexconf copied to clipboard

Add variable expension/extrapolation

Open vduseev opened this issue 3 years ago • 0 comments

Summary

Implement template like functionality using Jinja.

Given:

{
  "a": "my",
  "b": "{{ a }}var",
  "{{ a }}-{{ b }}": ["{{ b }}"]
}

Should evaluate to:

{
  "a": "my",
  "b": "myvar",
  "my-myvar": ["myvar"]
}

vduseev avatar Apr 02 '21 20:04 vduseev