Hi <@U0BUH9FRD> Sorry, there are still some bits ...
# scripting
i
Hi @sdeleuze Sorry, there are still some bits missing. But you can use a couple of workarounds: 1.
eval
with bindings is not yet there, but
Copy code
engine.setBindings(bindings, ScriptContext.ENGINE_SCOPE)
    return engine.eval(template) as String
works. 2. bindings are not yet accessible as regular vals from the script, only as a `bindings: Map<String, Any?>, so you can use
Copy code
"""Title : ${bindings[”title”]}"""