<xs:complexType name="linkType" mixed="true">
<xs:annotation>
<xs:documentation>Generic hyperlinks. Cannot be nested. Footnotes should be implemented by links referring to additional bodies in the same document</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="strong" type="styleLinkType"/>
<xs:element name="emphasis" type="styleLinkType"/>
<xs:element name="style" type="styleLinkType"/>
<xs:element name="strikethrough" type="styleLinkType"/>
<xs:element name="sub" type="styleLinkType"/>
<xs:element name="sup" type="styleLinkType"/>
<xs:element name="code" type="styleLinkType"/>
<xs:element name="image" type="inlineImageType"/>
</xs:choice>
<xs:attribute ref="xlink:type" use="optional"/>
<xs:attribute ref="xlink:href" use="required"/>
<xs:attribute name="type" type="xs:token" use="optional"/>
</xs:complexType> |