You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Twine's handling of newlines leaves a lot to be desired. Currently (Feb 2013) newlines are stripped at the start and end within <<if>> <<else>> <<endif>> blocks and at the beginning or end of passages. The solution is the force these breaks using <html><br></html> - but that is a ton of typing so the <<br>> macro saves some keystrokes and adds readability. Here's some example tweecode:
::BR Macro demo
Today I feel <<if $condition == true>>
<<br>>in need of a break.
<<else>>
linear.
<<endif>>