Reputation: 10285
I have a message I want to show but i don't know how to insert a line break.
Example: SC.say("Hello world. \n Bye.") does not show a message with Bye on a new line
SC.say("Hello world. \n Bye.")
Upvotes: 2
Views: 1675
Reputation: 2059
Standard HTML - use a <br> tag.
<br>
Upvotes: 5