diff options
author | Stef Walter <stef@memberwebs.com> | 2005-06-07 17:57:14 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-06-07 17:57:14 +0000 |
commit | 8803295019b0fe0b56c08899adf3f8231effb0f5 (patch) | |
tree | 0cf83c42731e7d90fcbc6e50eaaa2e2bd65e3c32 /doc/rtfx.xsd | |
parent | c386abd496f61f4628446f27b771529699c0ea45 (diff) |
Add <highlight> tag for highlighted text.
Diffstat (limited to 'doc/rtfx.xsd')
-rw-r--r-- | doc/rtfx.xsd | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/doc/rtfx.xsd b/doc/rtfx.xsd index a0a209d..42f9bd2 100644 --- a/doc/rtfx.xsd +++ b/doc/rtfx.xsd @@ -366,6 +366,7 @@ <xs:element ref="ref"/> <xs:element ref="font"/> <xs:element ref="span"/> + <xs:element ref="highlight"/> </xs:choice> </xs:group> @@ -497,8 +498,24 @@ <xs:documentation>Style name for the content.</xs:documentation> </xs:annotation> </xs:attribute> - </xs:complexType> </xs:element> + <xs:element name="highlight"> + <xs:annotation> + <xs:documentation>Highlighted text</xs:documentation> + </xs:annotation> + + <xs:complexType mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="inline"/> + </xs:choice> + <xs:attribute name="color" type="xs:string" use="optional"> + <xs:annotation> + <xs:documentation>The color of the highlight</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:complexType> + </xs:element> + </xs:schema> |