Skip to content
Skip to search - Accesskey = s
parentNode.org
The building blocks of a solid frontend.
Pasted
by
reieRMeister
on
2010-02-05 12:46
as
Plain Text
Create New
http://pastebin.parentnode.org/
Links this one
http://pastebin.parentnode.org/103404
Comment
json-string = '"' string '"' ; node-name = json-string ; text-node = json-string ; text-node-list = text-node ',' text-node-list | text-node ; attribute-node = '{' node-name ':' text-node '}' ; attribute-node-list = attribute-node ',' attribute-node-list | attribute-node ; attributes = '[' attribute-node-list ']' ; node = attributes | element-node | text-node-list ; node-list = node ',' node-list | node ; nodes = '[' node-list ']' ; element-node = '{' node-name ':' nodes '}' ;