Reputation: 334
Is there a way to see the raw output of your bot to different chat agents? My \n line breaks aren't carrying through all the way to slack. I don't know if it's a slack bug or a framework bug.
Upvotes: 1
Views: 129
Reputation: 10573
To represent a paragraph break you need to have a blank line.
Markdown like this:
This is
paragraph one
This is
paragraph two
Will be rendered as
This is paragraph one
This is paragraph two
See: http://docs.botframework.com/connector/message-content/
Upvotes: 1