# 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: # # (.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: 2003/10/20 15:38:13 $ # start = element * { any } any = attribute * { text }* | element * { any }*