I'm stuck with hugo array syntax in md file.
I want to create a multidimensional array for site images that stores src and alt text.
With simple array I don't have problems
list: ["item-1", "item-2"]
But if I do something like this
list: [["scr": item-1", "alt": "alt-1"]["scr": item-2", "alt": "alt-2"]]
I have errors.
What is the right syntax for this?