any.rng

来自「Hippo CMS是一个以信息为中心的开源内容管理系统。Hippo CMS目标是」· RNG 代码 · 共 39 行

RNG
39
字号
<?xml version="1.0"?><!--A RELAX NG schema that matches the (ANY) content type. Useful for prototyping,where you don't (yet) care what an element contains. Include it in another RNGschema with this line:<include href="any.rng"/>Taken from an email to XML-DEV by John Cowan, Subject "Re: [xml-dev] QuickRelaxNG question"$Revision: 1.1 $ $Date: 2003/03/09 00:10:45 $--><grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">  <start>    <element>      <anyName/>      <ref name="ANY"/>    </element>  </start>  <define name="ANY">    <interleave>      <zeroOrMore>        <attribute>          <anyName/>          <text/>        </attribute>      </zeroOrMore>      <zeroOrMore>        <element>          <anyName/>          <ref name="ANY"/>        </element>      </zeroOrMore>      <text/>    </interleave>  </define></grammar>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?