# 双引号中的特殊字符不会被转义
key0: "value0"
key1: "'value1'"
# 如果yaml中的value值包含双引号
# 则需要使用单引号括起来
false_key2: "This is "value2""
Key2: 'This is "value2"'
# 单引号中的特殊字符会被转义
# 如果key值中既有需要转义的特殊字符也有单引号
# 则单引号需要连续两个单引号转义为单引号
false_key3: 'This is "value3" of 'Key3''
Key3: 'This is "value3" of ''Key3'''
参考链接:关于yaml转义的几种尝试
标签:false,Key3,单引号,转义,Yaml,特殊字符 From: https://www.cnblogs.com/gjyhhh/p/16802523.html