我要将文本块导入到yaml文件中。文本包含特殊字符,我不想逐行删除并转义每个特殊字符。如何在Yaml中将以下内容编写为字符串,而不将其转换为注释或选择?
html: <p class='myParagraph'>The teacher said, "Use a #2 pencil."<br/>Question 1: 1\2=?</p>
有单引号,双引号,尖括号,正斜杠和反斜杠以及哈希。
答案 0 :(得分:0)
将文本块指定为YAML多行字符串:
html: | <p class='myParagraph'>"Use a #2 pencil."<br/>Question 1: 1\2=?</p>