代替
key:
- thisvalue
- thatvalue
- anothervalue
我想拥有
key:
1. thisvalue
2. thatvalue
3. anothervalue
纯粹为了人类可读性,对{key: [thisvalue, thatvalue, anothervalue]}
.
这似乎不是基本 YAML 语法的一部分,但有没有办法实现这一点 - 也许使用 YAML 中可能的一些高级奥术?
(我意识到这可以通过将列表编写为来近似:
key:
- 1. thisvalue
- 2. thatvalue
- 3. anothervalue
但这是一个丑陋的黑客,我更喜欢数字具有语义目的的解决方案,而不仅仅是值文本的一部分,这也需要被解析和删除。)