any.rnx

来自「国外的一套开源CRM」· RNX 代码 · 共 19 行

RNX
19
字号
# A RELAX NG schema that matches any XML. Useful for prototyping, where you# don't (yet) care what an element contains. Include it in another RNG schema# with this line:# # <include href="any.rng"/>  (.rng syntax)# or: # include "any.rnx"          (.rnx syntax)# # Taken from an email to XML-DEV by John Cowan, Subject "Re: [xml-dev] Quick# RelaxNG question"# # $Revision: 1.1 $ $Date: 2002/11/07 06:37:02 $# Jeff Turner <jefft@apache.org># start = element * { any }any = attribute * { text }* |      element * { any }*

⌨️ 快捷键说明

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