如何使用xml-model标记将xml文档链接到Relax NG模式?

时间:2014-01-07 14:46:28

标签: xml xml-validation relaxng

我希望使用W3C draft中指定的xml-model标记将xml文档链接到其Relax NG描述文档。

<?xml-model href="" type="" schematypens="" charset="" title="" group="" phase="" ?>

您是否有完整的示例来说明如何使用它?是否有验证xml-model标签的验证工具?

编辑:我在这里看到了Suggested use of schematypens的例子。我想剩下的唯一问题是哪些工具使用xml-model。

1 个答案:

答案 0 :(得分:6)

规范中给出的示例足以让RELAX NG:

<?xml-model href="http://www.docbook.org/xml/5.0/rng/docbook.rng" schematypens="http://relaxng.org/ns/structure/1.0"?>

或者,如果您使用紧凑语法:

<?xml-model href="whatever.rnc" type="application/relax-ng-compact-syntax"?>

oXygen XML支持此规范。