Multi line lua expression

hi there, i want to write a expression such that a variable holds my data structure [array<object<k,v>>] and then another function that renders it into a table . can anyone help me with this ?

I don’t really get what you try to do.
But just folding data can be done in space lua block, like this

```space-lua
myVar = {
  {a=1, b="string"},
  {a=2, b="otherString"},
}
```

Rendering in format of the table will be done automatically, if you just us this variable inline ${myVar}