我无法弄清楚如何使用多行字符串作为yaml序列的一部分:
foo:
- bar
- bar2
- > super duper long
string that I would like
to have on multiple lines
- Another item
有可能吗?
答案 0 :(得分:16)
如果你想使用折叠标量:
foo:
- bar
- bar2
- >
super duper long
string that I would like
to have on multiple lines
- Another item
请注意,折叠标量标题的行上可能没有内容(>
的行)。
或者,您可以使用普通标量:
foo:
- bar
- bar2
- super duper long
string that I would like
to have on multiple lines
- Another item