特别是,我正在为 CSSEdit 编辑 AutoCompletion.plist 文件(如果这很重要的话)。
我的问题是,是否有任何带有 STRING 元素的字符需要转义?空间?引号?
编辑:为了清楚起见,我没有使用 CSSEdit 来编辑文件——而是该文件是 CSSEdit 包的一部分。我正在使用 TextMate 来编辑文件(尽管“Property List Editor.app”是另一个选项)并且它是 XML 格式的。这是 AutoCompletion.plist 文件中的一个片段:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>font-family</key>
<array>
<string>Arial</string>
<string>Helvetica</string>
<string>Georgia</string>
<string>serif</string>
<string>sans-serif</string>
<string>cursive</string>
etc...
我想添加带有空格和单引号的字符串,例如:
<string>Georgia, Times, 'Times New Roman', serif</string>
但是当我这样编辑文件时,CSSEdit 变得混乱