The data on JSON would be a multi-dimensional array, called by a Liquid template as follows:
array-inception: [
prompt1: "string",
variable1: "(int/float)",
evento_prompt_2:"string",
variable2:"(int/float)",
],
I tried to call {{ array[0].array-inception[0] }} and I also tried with {{ array[0].array-inception }} as a whole, but always getting brackets on natural language, such as...
[string] [(int/float)]
[[string], [(int/float)], [string], [(int/float)]]
Using the filter {{| concat:}} still leads to...
[string (int/float)]
Is there anyway that I can solve this without using any function on JS or at Liquid? Any filter that I could apply on the later?