如何在 botframework 中的语言生成文件中换行

How to break line in language generation file in botframework

我的机器人的语言生成文件中有很长的文本行。如何打破代码行以提高可见性?

# 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?

进入这个(但会导致错误)

# 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?

请参阅 this section 多行文本。

基本上:

# 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?