RELAX NG
RELAX NG is an actively used grammar language created in 2001. In computing, RELAX NG (REgular LAnguage for XML Next Generation) is a schema language for XML - a RELAX NG schema specifies a pattern for the structure and content of an XML document. A RELAX NG schema is itself an XML document but RELAX NG also offers a popular compact, non-XML syntax. Compared to other XML schema languages RELAX NG is considered relatively simple. Read more on Wikipedia...
19Years Old | 25Users | ?Jobs |
- RELAX NG ranks in the top 10% of languages
- the RELAX NG website
- the RELAX NG wikipedia page
- RELAX NG first appeared in 2001
- Have a question about RELAX NG not answered here? Email me and let me know how I can help.
Example code from the web:
# A RELAX NG compact syntax pattern # for an address book. element addressBook { # an entry in the address book element card { element name { text }, element email { text } # an email address }* }
Last updated August 9th, 2020