I want to define an array with multiline strings.
I tried this approach and it works
vars:
multi_line_strings_array: ["Hello\nWorld\n", "This\nis really\ngreat", "that\nit works"]
It works for small multiline strings.But if the string becomes a little big there will be a problem of readablility.
Is there any better way to define an array of multi-line strings such that readability is not a problem.