programmatic text
provides an evaluation context
to allow users to input a text
containing {variables}
which will be replaced after evaluation
with the results of the user-input code
.
Considering the following user text
input
simple {example} with one variable
and the following user code
input in javascript
const example = 'fake world example';
return {
example,
};
will evaluate to the content
simple fake world example with one variable