⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 any.rng

📁 国外的一套开源CRM
💻 RNG
字号:
<?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: 2002/11/07 06:37:02 $Jeff Turner <jefft@apache.org>--><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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -