diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-02-02 12:56:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-02-02 13:01:40 (GMT) |
commit | 90fb3132ce02eb44abe3797954267fefcb8d10a8 (patch) | |
tree | 82488a1c3d2465d3c50d3aa9c65f7652a585797e /templates/xml | |
parent | a2954444b3b2bd0af09f3c886f13b4597866153a (diff) | |
download | Doxygen-90fb3132ce02eb44abe3797954267fefcb8d10a8.zip Doxygen-90fb3132ce02eb44abe3797954267fefcb8d10a8.tar.gz Doxygen-90fb3132ce02eb44abe3797954267fefcb8d10a8.tar.bz2 |
Avoid unsupported html attributes from appearing in the XML/docbook output and other small fixes
Diffstat (limited to 'templates/xml')
-rw-r--r-- | templates/xml/compound.xsd | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/templates/xml/compound.xsd b/templates/xml/compound.xsd index 191527f..277a584 100644 --- a/templates/xml/compound.xsd +++ b/templates/xml/compound.xsd @@ -572,7 +572,9 @@ <xsd:attribute name="thead" type="DoxBool" /> <xsd:attribute name="colspan" type="xsd:integer" /> <xsd:attribute name="rowspan" type="xsd:integer" /> - <!-- maybe other attributes can be listed as well --> + <xsd:attribute name="align" type="DoxAlign" /> + <xsd:attribute name="class" type="xsd:string" /> + <xsd:attribute name="htmlattrib" type="xsd:string" /> <xsd:anyAttribute processContents="skip"/> </xsd:complexType> @@ -940,5 +942,13 @@ </xsd:restriction> </xsd:simpleType> + <xsd:simpleType name="DoxAlign"> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="left"/> + <xsd:enumeration value="right"/> + <xsd:enumeration value="center"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:schema> |