How do I break a string over multiple lines?

前端 未结 9 1150
有刺的猬
有刺的猬 2020-11-22 01:06

In YAML, I have a string that\'s very long. I want to keep this within the 80-column (or so) view of my editor, so I\'d like to break the string. What\'s the syntax for this

9条回答
  •  囚心锁ツ
    2020-11-22 01:16

    To preserve newlines use |, for example:

    |
      This is a very long sentence
      that spans several lines in the YAML
      but which will be rendered as a string
      with newlines preserved.
    

    is translated to "This is a very long sentence‌\n that spans several lines in the YAML‌\n but which will be rendered as a string‌\n with newlines preserved.\n"

提交回复
热议问题