我实际上正在创建一个代码段,用于创建带有您姓名的标题,电子邮件...... 我想添加项目开始的时间和日期以及上次保存的时间。
我试图包括:
<xs:element name="startdate" type="xs:dateTime"/>
用
<xs:simpleType name="dateTime" id="dateTime">
<xs:restriction base="xs:anySimpleType">
<xs:whiteSpace value="collapse" fixed="true"/>
</xs:restriction>
</xs:simpleType>
但Sublime Text 2返回我:&#34;无法识别的plis元素xs:restriction&#34;
这是我的代码:
<?xml version="1.0" encoding="UTF-8"?>
<xs:simpleType name="dateTime" id="dateTime">
<xs:restriction base="xs:anySimpleType">
<xs:whiteSpace value="collapse" fixed="true"/>
</xs:restriction>
</xs:simpleType>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>Globals</string>
<key>scope</key>
<string></string>
<key>settings</key>
<dict>
<key>shellVariables</key>
<array>
<dict>
<key>name</key>
<string>TM_TIME</string>
<key>value</key>
<string><xs:element name="startdate" type="xs:dateTime"/></string>
</dict>
</array>
</dict>
<key>uuid</key>
<string>0ef292cd-943a-4fb0-b43d-65959c5e6b06</string>
</dict>
</plist>
我拿了
<xs:simpleType name="dateTime" id="dateTime">
此处:http://docstore.mik.ua/orelly/xml/schema/ch16_01.htm#ch16-77031
知道我做错了吗?