L
Lord0
Hi there,
How do I define in a schema that an element (<element>) may have any
content i.e. text, other elements, partial elements, angle brackets
etc?
So all of the following would be valid:
<element>
aaaaaaa<foo/>bbbbbb<bar/>cccccc
</element>
<element>
aaaaaaa<foo>bbbbbb<bar>cccccc
</element>
<element>
<foobbbbbbb<bar>cccccccc
</element>
etd
So I basically would like to tell the parser, via the schema, to ignore
anything between the opening and closing <element> tags
Lord0
How do I define in a schema that an element (<element>) may have any
content i.e. text, other elements, partial elements, angle brackets
etc?
So all of the following would be valid:
<element>
aaaaaaa<foo/>bbbbbb<bar/>cccccc
</element>
<element>
aaaaaaa<foo>bbbbbb<bar>cccccc
</element>
<element>
<foobbbbbbb<bar>cccccccc
</element>
etd
So I basically would like to tell the parser, via the schema, to ignore
anything between the opening and closing <element> tags
Lord0