How do I break a string over multiple lines?

前端 未结 9 1173
有刺的猬
有刺的猬 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:27

    To concatenate long lines without whitespace, use double quotes and escape the newlines with backslashes:

    key: "Loremipsumdolorsitamet,consecteturadipiscingelit,seddoeiusmodtemp\
      orincididuntutlaboreetdoloremagnaaliqua."
    

    (Thanks @Tobia)

提交回复
热议问题