Created
June 2, 2017 21:55
-
-
Save wking/64e273ba23af5723c2d3d6bde84ebc65 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Values SHOULD conform to the following grammar (specified in [XML 1.0's EBNF][ebnf]): | |
``` | |
ref ::= component ("/" component)* | |
component ::= alphanum (separator alphanum)* | |
alphanum ::= [a-zA-Z0-9]+ | |
separator ::= [-._:@+] | "--" | |
``` | |
[ebnf]: https://www.w3.org/TR/REC-xml/#sec-notation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment