diff options
author | albert-github <albert.tests@gmail.com> | 2019-12-19 15:13:48 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-12-19 15:13:48 (GMT) |
commit | 67d45042f2f30c1c6543c2cecfb608228a158a85 (patch) | |
tree | 43ecb675779b502646e395da22353d199185aa05 /templates/xml | |
parent | 742927e23a728fffe53e7bfd1d220f7df4c6f552 (diff) | |
download | Doxygen-67d45042f2f30c1c6543c2cecfb608228a158a85.zip Doxygen-67d45042f2f30c1c6543c2cecfb608228a158a85.tar.gz Doxygen-67d45042f2f30c1c6543c2cecfb608228a158a85.tar.bz2 |
Tests 86 with check against xsd gives error
When running test 86 with check against the xsd we get the error message:
```
not ok 1 - [086_style_tags.h]: test different HTML style tags
-------------------------------------
Element 'ins': This element is not expected. Expected is one of ( ulink, bold, strike, underline, emphasis, computeroutput, subscript, superscript, center, small ).
test_output_086/out/086__style__tags_8h.xml fails to validate
```
The element `ins` has been added.
Diffstat (limited to 'templates/xml')
-rw-r--r-- | templates/xml/compound.xsd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/xml/compound.xsd b/templates/xml/compound.xsd index 7769c70..954141d 100644 --- a/templates/xml/compound.xsd +++ b/templates/xml/compound.xsd @@ -414,6 +414,7 @@ <xsd:element name="underline" type="docMarkupType" /> <xsd:element name="emphasis" type="docMarkupType" /> <xsd:element name="computeroutput" type="docMarkupType" /> + <xsd:element name="ins" type="docMarkupType" /> <xsd:element name="subscript" type="docMarkupType" /> <xsd:element name="superscript" type="docMarkupType" /> <xsd:element name="center" type="docMarkupType" /> |