Hi,
I have a problem with white space in outputmacro. for example I have this macro:
outputmacro: ^ask_for_topic(^other)
# generate output such as:
# "What are you looking for?"
# ^other==true "Are you looking for anything else?"
if (^other == null) { What are } else { Are }
you [ looking for ] [ interested in ]
if (^other == true) {
[ anything ] [ something ] else [ like ] [ such as ] ^list_topics() [] [ maybe ]
}
?
And it generates output such as:
^ask_for_topic(null)
What are youinterested in?
What are youlooking for?
^ask_for_topic(true)
Are youlooking for something else such as…
As you can see, after the fixed output text (you) the macro not generating the white space between the text and the randomized text.
If there is some way to impose white space output or anything else that would be helpful.
Thanks