[
Lists Home |
Date Index |
Thread Index
]
- From: "Gavin Thomas Nicol" <gtn@ebt.com>
- To: "'XML Dev'" <xml-dev@ic.ac.uk>
- Date: Sat, 27 Nov 1999 18:34:11 -0500
> document ::= StartTag Stuff EndTag
> StartTag ::= ‘<’ Tag ‘>’
> EndTag ::= ‘</’ Tag ‘>’
> Tag ::= [0-'~']+
> Stuff ::= [0-'~']*
>
> We expect RTSML 1.0 to be a WFeCes Recommendation on April 1,
> 1999 or day after tomorrow (whichever comes first).
This is close to what Rick was talking about. A truly minimal
language:
content = (char | element)*
element = '<' [a-zA-Z_]+ '>' content '</' [a-zA-Z_]+ '>'
char = [^<]
though "char" would probably be all ASCII characters above
character code 31, minus the less-than sign.
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo@ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|