-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.txt
More file actions
48 lines (45 loc) · 952 Bytes
/
examples.txt
File metadata and controls
48 lines (45 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
LABEL: Examples
SUBTEXT: Comparative Exhibition
Compare the elegance of PIML against traditional formats. Notice how the vertical flow of PIML reduces cognitive load compared to the nested brackets of JSON.
### PIML Schema
```piml
(project)
(name) piml
(version) 1.0.0
(description) Parenthesis Intended Markup Language
(author)
(name) fezcode
(github) https://github.com/fezcode
(tags)
> markup
> data-serialization
> minimalist
(isActive) true
(spec)
(version) 4.3
(status) stable
```
### JSON Legacy
```json
{
"project": {
"name": "piml",
"version": "1.0.0",
"description": "Parenthesis Intended Markup Language",
"author": {
"name": "fezcode",
"github": "https://github.com/fezcode"
},
"tags": [
"markup",
"data-serialization",
"minimalist"
],
"isActive": true,
"spec": {
"version": 4.3,
"status": "stable"
}
}
}
```