使用导入模式中的非命名空间元素名称?

时间:2016-01-27 19:59:05

标签: xml xsd

我创建了一个导入XHTML 1.1 Strict模式的模式。我的许多元素都利用了XHTML架构中的blockinline组。

我遇到的问题是我创建的XML文档必须使用XHTML命名空间才能成功验证。

<example
  xmlns="http://example.com/example.xsd"
  xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <myElement>
    <xhtml:p>This is my <xhtml:strong>paragraph</xhtml:strong>.</xhtml:p>
  </myElement>
</example>

我想要做的是不需要在我的XML文档中使用XHTML命名空间。

<example xmlns="http://example.com/example.xsd">
  <myElement>
    <p>This is my <strong>paragraph</strong>.</p>
  </myElement>
</example>

这样的事情可能吗?

0 个答案:

没有答案