I want to make an xsd that will allow something like the following:
<document>
Here is first paragraph with e.g. <i>itallic</i> and <b>bold</b>.
<p>Here is the second paragraph also with some <i>itallic</i></p>
<p>Here is the third paragraph</p>
<!-- If there is any character data here it should be rejected -->
</document>
E.g., I want to allow the first paragraph to not have a <p> tag arround it, but subsequent paragraphs must have it.
Any hints on what I should look at? It seems to me that I cannot get what I want by putting mixed="true" on a complexType definition.
Update: It is not because the first paragraph is special. It is simply because I want to avoid having to write some tags. For example, I would like to be able make an order list by this:
<ol>
<le>Here is the first list element, only one paragraph, easy to write</le>
<le>Here is the second element.
<p>The second element has an extra paragaph.</p>
</le>
</ol>
The normal case will be that there is only one paragraph in each list element so it is annoying having to write both <le> and <p>. Still, I want to support the unusual case of multiple paragraphs in a list element.
