Reputation: 467
I have long text line in the language generation file of my bot. How to break line of code to improve visibility?
# PromptForDestinationCity
- Where would you like to travel to? There are plenty of options. Just choose one. Or do whatever else you would like to. Enjoy!
- What is your destination city?
into this (but it will result with error)
# PromptForDestinationCity
- Where would you like to travel to? There are plenty of options. Just choose one. Or
do whatever else you would like to. Enjoy!
- What is your destination city?
Upvotes: 0
Views: 106
Reputation: 1099
Please see this section on multiline text.
Basically:
# PromptForDestinationCity
- ``` Where would you like to travel to?
There are plenty of options.
Just choose one. Or do whatever else you would like to. Enjoy!
```
- What is your destination city?
Upvotes: 1