Created
January 24, 2022 09:35
-
-
Save tonyg/a5128e98add481d3189689b527b343b1 to your computer and use it in GitHub Desktop.
Sketch of a representation of XML infoset in Preserves Schema
This file contains hidden or 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
version 1 . | |
Node = Text / Element . | |
Text = string . | |
Element = | |
/ @withAttributes | |
<<rec> @localName symbol [@attributes Attributes @children Node ...]> | |
/ @withoutAttributes | |
<<rec> @localName symbol @children [Node ...]> . | |
Attributes = { symbol: string ...:... } . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment