In the following array, one of the items (blue) has double-square brackets:
How would I instruct Lua to escape those brackets in such an instance?
Code:
t = [[ red orange [[blue]] pink green ]] print (t)
Comment