私のタイプの 1 つの子として Html タグを許可しようとしています。
<xs:complexType name="Html">
<xs:sequence>
<!-- Attempting to allow us to include necessary HTML right into our XML -->
<xs:any minOccurs="0" namespace="http://www.w3.org/1999/xhtml"></xs:any>
</xs:sequence>
</xs:complexType>
<xs:element name="Html" type="Html"></xs:element>
その意図は、そのタイプの任意の要素内で Html タグを許可することですが、適切な形式の html の周囲の html または body タグを必ずしも持つ必要はありません。
タグを XSD に含めるにはどうすればよいですか?