YAML:空字典

如何在YAML中编写一个字典(地图),其中一个键的空string作为其值?

key: 

被parsing为null –

 %YAML 1.1 --- !!map { ? !!str "key" : !!null "null", } 

正确的答案是:

 key: ""