summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2005-06-07 23:15:27 +0000
committerStef Walter <stef@memberwebs.com>2005-06-07 23:15:27 +0000
commit56f7f66eb13eefb3ea86e9280e321751d8df2761 (patch)
treea9e66693ed405516329206bb9a0cc10f5ec0bc44
parent9066b1cee6b62d90144c8685950a9720a0765290 (diff)
Update XML schema for new <link> tag.
-rw-r--r--doc/rtfx.xsd18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/rtfx.xsd b/doc/rtfx.xsd
index 42f9bd2..2efbe90 100644
--- a/doc/rtfx.xsd
+++ b/doc/rtfx.xsd
@@ -367,6 +367,7 @@
<xs:element ref="font"/>
<xs:element ref="span"/>
<xs:element ref="highlight"/>
+ <xs:element ref="link"/>
</xs:choice>
</xs:group>
@@ -518,4 +519,21 @@
</xs:complexType>
</xs:element>
+ <xs:element name="link">
+ <xs:annotation>
+ <xs:documentation>A hyperlink.</xs:documentation>
+ </xs:annotation>
+
+ <xs:complexType mixed="true">
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
+ <xs:group ref="inline"/>
+ </xs:choice>
+ <xs:attribute name="href" type="xs:string" use="required">
+ <xs:annotation>
+ <xs:documentation>The URI that the hyperlink points to.</xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ </xs:complexType>
+ </xs:element>
+
</xs:schema>