diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-07-30 09:26:25 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-07-30 09:26:25 (GMT) |
commit | db3f41124f7b7aae2b25899f4efc8a96644c990f (patch) | |
tree | 4a3cf31acfd8f65eb49c22894a62607c9644e433 /templates | |
parent | 25d7cd240edb02510bed86677d3021a2cfd96cd1 (diff) | |
parent | 2e832d8c725dc8897b46802a699e776ce10d3e5a (diff) | |
download | Doxygen-db3f41124f7b7aae2b25899f4efc8a96644c990f.zip Doxygen-db3f41124f7b7aae2b25899f4efc8a96644c990f.tar.gz Doxygen-db3f41124f7b7aae2b25899f4efc8a96644c990f.tar.bz2 |
Merge branch 'feature/bug_xml_msc_schema' of https://github.com/albert-github/doxygen into albert-github-feature/bug_xml_msc_schema
Diffstat (limited to 'templates')
-rw-r--r-- | templates/xml/compound.xsd | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/templates/xml/compound.xsd b/templates/xml/compound.xsd index e4ca883..9d3f943 100644 --- a/templates/xml/compound.xsd +++ b/templates/xml/compound.xsd @@ -423,8 +423,8 @@ <xsd:element name="rtfonly" type="xsd:string" /> <xsd:element name="latexonly" type="xsd:string" /> <xsd:element name="image" type="docImageType" /> - <xsd:element name="dot" type="xsd:string" /> - <xsd:element name="msc" type="xsd:string" /> + <xsd:element name="dot" type="docImgFileType" /> + <xsd:element name="msc" type="docImgFileType" /> <xsd:element name="plantuml" type="xsd:string" /> <xsd:element name="anchor" type="docAnchorType" /> <xsd:element name="formula" type="docFormulaType" /> @@ -588,6 +588,15 @@ <xsd:complexType name="docFileType" mixed="true"> <xsd:group ref="docTitleCmdGroup" minOccurs="0" maxOccurs="unbounded" /> <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="width" type="xsd:string" /> + <xsd:attribute name="height" type="xsd:string" /> + </xsd:complexType> + + <xsd:complexType name="docImgFileType" mixed="true"> + <xsd:group ref="docTitleCmdGroup" minOccurs="0" maxOccurs="unbounded" /> + <xsd:attribute name="caption" type="xsd:string" /> + <xsd:attribute name="width" type="xsd:string" /> + <xsd:attribute name="height" type="xsd:string" /> </xsd:complexType> <xsd:complexType name="docTocItemType" mixed="true"> |