+1 vote
by (640 points)
I have a some code wrapped inside a <<nobr>> macro.

It includes a bunch of <<if>> macros that change the passage depending on variables.

One of these changes, <<replace(s)>> a bunch of text with a list of items.

However due to my use of <<nobr>> the list is not displayed properly.

Is it possible to have this list displayed properly (in list form) while still keeping the code within <<nobr>>

1 Answer

+1 vote
by (159k points)
selected by
 
Best answer

You can use a HTML br element in the passage content to manually insert line-breaks.

<<nobr>>
This sentance
will still appear<br>
on two
lines.
<</nobr>>

 

...