I have an array containing various strings that are not dialogue - i.e. You see an apple, You see a pear, etc. - and I want to add a dialogue string "I like apples." To the same array.
I have two questions:
1. How can I apply CSS markup just to the dialogue string? I tried to do this by pushing @@.player;"I like apples"@@ to the array, but it doesn't work, I assume because of synthax reasons.
2. How can I make sure that the dialogue has quotation marks around it?
<<set $items to ["apples","pears","figs"]>>
/*<<set $items to $items.push(@@.player;"I like apples"@@)>>*/
<<for $i = 0; $i < 5; $i++>>
<<print either($items)>>
<</for>>