If I have something like the following in watson dialog xml:
<output id="output_2508575">
<prompt selectionType="SEQUENTIAL">
<item>Your options are: 

option1,

option2,

option3
</item>
</prompt>
</output>
I get "Your options are: option1,option2,option3" without any newlines.
How do I create a newline? In addition to the above example I've also tried
\n
<br>
<br />
&lt;br /&gt;
&lt;br&gt;


You can use the following.
<item>Your options are:<br>
option 1,<br>
option 2,<br>
option 3<br>
</item>