mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-26 10:03:34 +03:00
4338c310eb
RELAX NG allows for div elements inside of include elements. We need to look inside those div elements for start and define elements that may be redefining start and define elements in the included grammar.
12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
|
|
<include href="include0.inc">
|
|
<div>
|
|
<start>
|
|
<element name="root">
|
|
<empty/>
|
|
</element>
|
|
</start>
|
|
</div>
|
|
</include>
|
|
</grammar>
|