ComputerScientist
174 subscribers
14 photos
3 files
206 links
▜ The Inventor

Stuff that inspire you to create.

See also: ▙ @LitMind
Download Telegram
#JSON
Map keys are always strings.
XML
data
<emptyTag/>
<tag> data </tag>
<tag attribute="value"> data </tag>

Lisp
(data)
(emptyTag)
(tag data)
(tag ((attribute value)) data)

JSON
"data"
{}
{"tag": "data"}
{"tag": [{"attribute": "value"}, "data"]}

NON
"data"
{}
{tag = "data"}
{tag = {{attribute = "value"}, "data"}}

#XML #Lisp #JSON #Nile
JSON to NON

Replacements:
[{
]
}
nullnone
"(.*)":$1 =

#JSON #Nile