I have a following key-value.
{
"hello": "HELLO",
"world": "WORLD",
"value": "eval: $(ref .hello) $(echo $(ref .world))"
}
The intention is to render following element.
"value": "HELLO $(echo WORLD)"
However, jq-front renders this into :
Because it just considers the given data as a nested command substitution.
How can I define the element to get the desired string?
I have a following key-value.
The intention is to render following element.
However,
jq-frontrenders this into :Because it just considers the given data as a nested command substitution.
How can I define the element to get the desired string?