Skip to content

Commit d5cea72

Browse files
committed
started grouping tags into groups #declustering
1 parent 94d1ee6 commit d5cea72

File tree

2 files changed

+2227
-0
lines changed

2 files changed

+2227
-0
lines changed

TagGroups.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# TagGroups
2+
3+
const TagGroups = {
4+
name: {
5+
'name': String,
6+
'name:en': String,
7+
}
8+
}
9+
10+
11+
name:en:plaintext = 'hello world'
12+
name:de:plaintext = 'hallo welt'
13+
14+
name:en = 'hello world'
15+
name:en:format = 'plaintext'
16+
name:de = 'hallo welt'
17+
name:de:format = 'plaintext'
18+
19+
name = 'hello world'
20+
name:lang = 'en'
21+
name:format = 'plaintext'
22+
23+
name: {
24+
en: 'hello world'
25+
de: 'hallo welt'
26+
format: 'plaintext'
27+
}
28+
29+
name: [
30+
{
31+
value: 'hello world'
32+
lang: 'en'
33+
format: 'plaintext'
34+
},
35+
{
36+
value: 'hallo welt'
37+
lang: 'de'
38+
format: 'plaintext'
39+
},
40+
]
41+
42+
43+
44+
date:year = 2020
45+
date:year_is_set = true
46+
date:month = null
47+
date:month_is_set = false
48+
date:day = 1
49+
date:day_is_set = true
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
60+

0 commit comments

Comments
 (0)