appscms-tools-theme 5.1.8 → 5.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_data/.DS_Store +0 -0
- data/_data/aitools/en/ai-article-writer.json +184 -0
- data/_data/aitools/en/amazon-product-bullet-points-generator.json +222 -0
- data/_data/aitools/en/amazon-product-description-generator.json +222 -0
- data/_data/aitools/en/brand-name-generator.json +215 -0
- data/_data/aitools/en/product-description.json +222 -0
- data/_includes/.DS_Store +0 -0
- data/_includes/aitools/ai-article-writer.html +0 -0
- data/_includes/aitools/amazon-product-bullet-points-generator.html +0 -0
- data/_includes/aitools/amazon-product-description-generator.html +0 -0
- data/_includes/aitools/brand-name-generator.html +0 -0
- data/_includes/aitools/product-description.html +0 -0
- data/_includes/appscms/.DS_Store +0 -0
- data/_includes/appscms/customblog/pageRelatedPosts.html +1 -1
- data/_layouts/content-tool-ai copy 2.html +6611 -0
- data/_layouts/content-tool-ai.html +403 -24
- data/assets/.DS_Store +0 -0
- data/assets/css/content-tool-ai.css +776 -2
- data/assets/js/ai-article-writer.js +0 -0
- data/assets/js/amazon-product-bullet-points-generator.js +464 -0
- data/assets/js/amazon-product-bullet-points-generator3.js +176 -0
- data/assets/js/amazon-product-description-generator.js +309 -0
- data/assets/js/brand-name-generator.js +127 -0
- data/assets/js/product-description.js +299 -0
- metadata +19 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b68b4956e51cd2162815505c3b264e2fc7aefad09deea11352a44f214f37a4cd
|
4
|
+
data.tar.gz: d8bfd95e3e2821eb3804c3362ae8095030376c0de1688015b76e962f3c5b1de0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 440cfb7fc00c795e0e80fb68a512734bbb42ea05793d9ac6196e602347df3b27be248c424504e18076961631d0190d243495336f28c8751283f5c5066085d075
|
7
|
+
data.tar.gz: 26d38081315ef741cc139f722d23c3918916730037e279b2bfa0c8ed34da1d30bc75ab11ae16b77595410dff0caf1a3437872810c7302425030d199da6d746e4
|
data/_data/.DS_Store
CHANGED
Binary file
|
@@ -0,0 +1,184 @@
|
|
1
|
+
{
|
2
|
+
"Language": "English",
|
3
|
+
"htmlLangAtt": "en",
|
4
|
+
"h1": "AI Article Writer",
|
5
|
+
"h2": "",
|
6
|
+
"TITLE": "AI Article Writer",
|
7
|
+
"META": "",
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"label": "Topic / Keyword / Title",
|
11
|
+
"name": "keyword",
|
12
|
+
"type": "text",
|
13
|
+
"placeholder": "Example: Tips for growing your email list",
|
14
|
+
"options": []
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"label": "Outline",
|
18
|
+
"name": "outline",
|
19
|
+
"type": "textarea",
|
20
|
+
"placeholder": "",
|
21
|
+
"options": []
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"label": "Edit Outline?",
|
25
|
+
"name": "outline-editor",
|
26
|
+
"type": "checkbox",
|
27
|
+
"placeholder": "",
|
28
|
+
"options": []
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"label": "Include Images?",
|
32
|
+
"name": "images",
|
33
|
+
"type": "checkbox",
|
34
|
+
"placeholder": "",
|
35
|
+
"options": []
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"label": "External Links?",
|
39
|
+
"name": "links",
|
40
|
+
"type": "checkbox",
|
41
|
+
"placeholder": "",
|
42
|
+
"options": []
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"label": "Realtime Knowledge?",
|
46
|
+
"name": "realtime",
|
47
|
+
"type": "checkbox",
|
48
|
+
"placeholder": "",
|
49
|
+
"options": []
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"advancedInputs": [
|
53
|
+
{
|
54
|
+
"label": "Tone & Writing Style",
|
55
|
+
"name": "tone",
|
56
|
+
"type": "select",
|
57
|
+
"placeholder": "",
|
58
|
+
"options": [
|
59
|
+
"Default"
|
60
|
+
]
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"label": "Language",
|
64
|
+
"name": "language",
|
65
|
+
"type": "select",
|
66
|
+
"placeholder": "",
|
67
|
+
"options": [
|
68
|
+
"English (US)"
|
69
|
+
]
|
70
|
+
}
|
71
|
+
],
|
72
|
+
"jsfilepaths": [
|
73
|
+
"/assets/js/ai-article-writer.js"
|
74
|
+
],
|
75
|
+
"categories": [],
|
76
|
+
"primaryKeywords": [],
|
77
|
+
"secondaryKeywords": [],
|
78
|
+
"TEXTUAL_CONTENT": [
|
79
|
+
{
|
80
|
+
"priority": 1,
|
81
|
+
"logoUrl": "",
|
82
|
+
"header": "",
|
83
|
+
"content": ""
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"priority": 1,
|
87
|
+
"logoUrl": "",
|
88
|
+
"header": "",
|
89
|
+
"content": ""
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"priority": 1,
|
93
|
+
"logoUrl": "",
|
94
|
+
"header": "",
|
95
|
+
"content": ""
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"priority": 1,
|
99
|
+
"logoUrl": "",
|
100
|
+
"header": "",
|
101
|
+
"content": ""
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"priority": 1,
|
105
|
+
"logoUrl": "",
|
106
|
+
"header": "",
|
107
|
+
"content": ""
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"priority": 1,
|
111
|
+
"logoUrl": "",
|
112
|
+
"header": "",
|
113
|
+
"content": ""
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"HOW_TO_CONTENT": {
|
117
|
+
"logoImageUrl": "",
|
118
|
+
"heading": "",
|
119
|
+
"steps": [
|
120
|
+
"",
|
121
|
+
"",
|
122
|
+
"",
|
123
|
+
""
|
124
|
+
]
|
125
|
+
},
|
126
|
+
"FAQ": [
|
127
|
+
{
|
128
|
+
"question": "",
|
129
|
+
"answer": ""
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"question": "",
|
133
|
+
"answer": ""
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"question": "",
|
137
|
+
"answer": ""
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"question": "",
|
141
|
+
"answer": ""
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"question": "",
|
145
|
+
"answer": ""
|
146
|
+
}
|
147
|
+
],
|
148
|
+
"infographics": [
|
149
|
+
{
|
150
|
+
"image": "",
|
151
|
+
"description": "",
|
152
|
+
"alt": ""
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"image": "",
|
156
|
+
"description": "",
|
157
|
+
"alt": ""
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"image": "",
|
161
|
+
"description": "",
|
162
|
+
"alt": ""
|
163
|
+
}
|
164
|
+
],
|
165
|
+
"author": "lakshmi",
|
166
|
+
"contributors": [
|
167
|
+
{
|
168
|
+
"name": "Debosmita Bedajna"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"name": "Suchita Kasab"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"name": "RK Shree"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"name": "Bandana"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"name": "Manpreet Singh"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"icon": "AI-Powered Tool"
|
184
|
+
}
|
@@ -0,0 +1,222 @@
|
|
1
|
+
{
|
2
|
+
"Language": "English",
|
3
|
+
"htmlLangAtt": "en",
|
4
|
+
"h1": "Amazon Product Bullet Points Generator",
|
5
|
+
"h2": "",
|
6
|
+
"TITLE": "Amazon Product Bullet Points Generator",
|
7
|
+
"META": "",
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"label": "Product Name",
|
11
|
+
"name": "input0",
|
12
|
+
"type": "text",
|
13
|
+
"placeholder": "Enter the name of your Amazon product.",
|
14
|
+
"options": []
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"label": "Detailed Product Features",
|
18
|
+
"name": "input1",
|
19
|
+
"type": "textarea",
|
20
|
+
"placeholder": "Provide a detailed list of product features.",
|
21
|
+
"options": []
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"advancedInputs": [
|
25
|
+
{
|
26
|
+
"label": "Language",
|
27
|
+
"name": "language",
|
28
|
+
"type": "select",
|
29
|
+
"placeholder": "",
|
30
|
+
"options": [
|
31
|
+
"English (US)",
|
32
|
+
"English (UK)",
|
33
|
+
"French",
|
34
|
+
"Spanish",
|
35
|
+
"German",
|
36
|
+
"Italian",
|
37
|
+
"Dutch",
|
38
|
+
"Arabic",
|
39
|
+
"Portuguese",
|
40
|
+
"Portuguese (BR)",
|
41
|
+
"Swedish",
|
42
|
+
"Norwegian",
|
43
|
+
"Danish",
|
44
|
+
"Finnish",
|
45
|
+
"Romanian",
|
46
|
+
"Czech",
|
47
|
+
"Slovak",
|
48
|
+
"Slovenian",
|
49
|
+
"Hungarian",
|
50
|
+
"Hebrew",
|
51
|
+
"Polish",
|
52
|
+
"Turkish",
|
53
|
+
"Russian",
|
54
|
+
"Hindi",
|
55
|
+
"Thai",
|
56
|
+
"Japonese",
|
57
|
+
"Chinese (Simplified)",
|
58
|
+
"Korean",
|
59
|
+
"Indonesian",
|
60
|
+
"Greek",
|
61
|
+
"Bulgarian",
|
62
|
+
"Ukrainian",
|
63
|
+
"Estonian",
|
64
|
+
"Latvian",
|
65
|
+
"Lithuanian",
|
66
|
+
"Croatian",
|
67
|
+
"Serbian",
|
68
|
+
"Bosnian",
|
69
|
+
"Macedonian",
|
70
|
+
"Albanian",
|
71
|
+
"Vietnamese"
|
72
|
+
]
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"label": "Tone of voice",
|
76
|
+
"name": "tone",
|
77
|
+
"type": "select",
|
78
|
+
"placeholder": "",
|
79
|
+
"options": [
|
80
|
+
"Formal",
|
81
|
+
"Professional",
|
82
|
+
"Confident",
|
83
|
+
"Persuasive",
|
84
|
+
"Authoritative",
|
85
|
+
"Friendly",
|
86
|
+
"Empathetic",
|
87
|
+
"Serious",
|
88
|
+
"Sympathetic",
|
89
|
+
"Informal",
|
90
|
+
"Warm",
|
91
|
+
"Emotional",
|
92
|
+
"Optimistic",
|
93
|
+
"Playful",
|
94
|
+
"Humorous",
|
95
|
+
"Witty",
|
96
|
+
"Ironic",
|
97
|
+
"Sarcastic",
|
98
|
+
"Pessimistic",
|
99
|
+
"Cynical",
|
100
|
+
"Tentative",
|
101
|
+
"Adventurous",
|
102
|
+
"Bold",
|
103
|
+
"Cold",
|
104
|
+
"Relaxed",
|
105
|
+
"Luxury",
|
106
|
+
"Clinical"
|
107
|
+
]
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"jsfilepaths": [
|
111
|
+
"/assets/js/amazon-product-bullet-points-generator.js"
|
112
|
+
],
|
113
|
+
"categories": [],
|
114
|
+
"primaryKeywords": [],
|
115
|
+
"secondaryKeywords": [],
|
116
|
+
"TEXTUAL_CONTENT": [
|
117
|
+
{
|
118
|
+
"priority": 1,
|
119
|
+
"logoUrl": "",
|
120
|
+
"header": "",
|
121
|
+
"content": ""
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"priority": 1,
|
125
|
+
"logoUrl": "",
|
126
|
+
"header": "",
|
127
|
+
"content": ""
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"priority": 1,
|
131
|
+
"logoUrl": "",
|
132
|
+
"header": "",
|
133
|
+
"content": ""
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"priority": 1,
|
137
|
+
"logoUrl": "",
|
138
|
+
"header": "",
|
139
|
+
"content": ""
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"priority": 1,
|
143
|
+
"logoUrl": "",
|
144
|
+
"header": "",
|
145
|
+
"content": ""
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"priority": 1,
|
149
|
+
"logoUrl": "",
|
150
|
+
"header": "",
|
151
|
+
"content": ""
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"HOW_TO_CONTENT": {
|
155
|
+
"logoImageUrl": "",
|
156
|
+
"heading": "",
|
157
|
+
"steps": [
|
158
|
+
"",
|
159
|
+
"",
|
160
|
+
"",
|
161
|
+
""
|
162
|
+
]
|
163
|
+
},
|
164
|
+
"FAQ": [
|
165
|
+
{
|
166
|
+
"question": "",
|
167
|
+
"answer": ""
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"question": "",
|
171
|
+
"answer": ""
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"question": "",
|
175
|
+
"answer": ""
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"question": "",
|
179
|
+
"answer": ""
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"question": "",
|
183
|
+
"answer": ""
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"infographics": [
|
187
|
+
{
|
188
|
+
"image": "",
|
189
|
+
"description": "",
|
190
|
+
"alt": ""
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"image": "",
|
194
|
+
"description": "",
|
195
|
+
"alt": ""
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"image": "",
|
199
|
+
"description": "",
|
200
|
+
"alt": ""
|
201
|
+
}
|
202
|
+
],
|
203
|
+
"author": "lakshmi",
|
204
|
+
"contributors": [
|
205
|
+
{
|
206
|
+
"name": "Debosmita Bedajna"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"name": "Suchita Kasab"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"name": "RK Shree"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"name": "Bandana"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"name": "Manpreet Singh"
|
219
|
+
}
|
220
|
+
],
|
221
|
+
"icon": "🔘"
|
222
|
+
}
|
@@ -0,0 +1,222 @@
|
|
1
|
+
{
|
2
|
+
"Language": "English",
|
3
|
+
"htmlLangAtt": "en",
|
4
|
+
"h1": "Amazon Product Description Generator",
|
5
|
+
"h2": "",
|
6
|
+
"TITLE": "Amazon Product Description Generator",
|
7
|
+
"META": "",
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"label": "Product Name",
|
11
|
+
"name": "input0",
|
12
|
+
"type": "text",
|
13
|
+
"placeholder": "Enter the name of your Amazon product.",
|
14
|
+
"options": []
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"label": "Key Features and Benefits",
|
18
|
+
"name": "input1",
|
19
|
+
"type": "textarea",
|
20
|
+
"placeholder": "Describe the features and benefits of your product.",
|
21
|
+
"options": []
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"advancedInputs": [
|
25
|
+
{
|
26
|
+
"label": "Language",
|
27
|
+
"name": "language",
|
28
|
+
"type": "select",
|
29
|
+
"placeholder": "",
|
30
|
+
"options": [
|
31
|
+
"English (US)",
|
32
|
+
"English (UK)",
|
33
|
+
"French",
|
34
|
+
"Spanish",
|
35
|
+
"German",
|
36
|
+
"Italian",
|
37
|
+
"Dutch",
|
38
|
+
"Arabic",
|
39
|
+
"Portuguese",
|
40
|
+
"Portuguese (BR)",
|
41
|
+
"Swedish",
|
42
|
+
"Norwegian",
|
43
|
+
"Danish",
|
44
|
+
"Finnish",
|
45
|
+
"Romanian",
|
46
|
+
"Czech",
|
47
|
+
"Slovak",
|
48
|
+
"Slovenian",
|
49
|
+
"Hungarian",
|
50
|
+
"Hebrew",
|
51
|
+
"Polish",
|
52
|
+
"Turkish",
|
53
|
+
"Russian",
|
54
|
+
"Hindi",
|
55
|
+
"Thai",
|
56
|
+
"Japonese",
|
57
|
+
"Chinese (Simplified)",
|
58
|
+
"Korean",
|
59
|
+
"Indonesian",
|
60
|
+
"Greek",
|
61
|
+
"Bulgarian",
|
62
|
+
"Ukrainian",
|
63
|
+
"Estonian",
|
64
|
+
"Latvian",
|
65
|
+
"Lithuanian",
|
66
|
+
"Croatian",
|
67
|
+
"Serbian",
|
68
|
+
"Bosnian",
|
69
|
+
"Macedonian",
|
70
|
+
"Albanian",
|
71
|
+
"Vietnamese"
|
72
|
+
]
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"label": "Tone of voice",
|
76
|
+
"name": "tone",
|
77
|
+
"type": "select",
|
78
|
+
"placeholder": "",
|
79
|
+
"options": [
|
80
|
+
"Formal",
|
81
|
+
"Professional",
|
82
|
+
"Confident",
|
83
|
+
"Persuasive",
|
84
|
+
"Authoritative",
|
85
|
+
"Friendly",
|
86
|
+
"Empathetic",
|
87
|
+
"Serious",
|
88
|
+
"Sympathetic",
|
89
|
+
"Informal",
|
90
|
+
"Warm",
|
91
|
+
"Emotional",
|
92
|
+
"Optimistic",
|
93
|
+
"Playful",
|
94
|
+
"Humorous",
|
95
|
+
"Witty",
|
96
|
+
"Ironic",
|
97
|
+
"Sarcastic",
|
98
|
+
"Pessimistic",
|
99
|
+
"Cynical",
|
100
|
+
"Tentative",
|
101
|
+
"Adventurous",
|
102
|
+
"Bold",
|
103
|
+
"Cold",
|
104
|
+
"Relaxed",
|
105
|
+
"Luxury",
|
106
|
+
"Clinical"
|
107
|
+
]
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"jsfilepaths": [
|
111
|
+
"/assets/js/amazon-product-description-generator.js"
|
112
|
+
],
|
113
|
+
"categories": [],
|
114
|
+
"primaryKeywords": [],
|
115
|
+
"secondaryKeywords": [],
|
116
|
+
"TEXTUAL_CONTENT": [
|
117
|
+
{
|
118
|
+
"priority": 1,
|
119
|
+
"logoUrl": "",
|
120
|
+
"header": "",
|
121
|
+
"content": ""
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"priority": 1,
|
125
|
+
"logoUrl": "",
|
126
|
+
"header": "",
|
127
|
+
"content": ""
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"priority": 1,
|
131
|
+
"logoUrl": "",
|
132
|
+
"header": "",
|
133
|
+
"content": ""
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"priority": 1,
|
137
|
+
"logoUrl": "",
|
138
|
+
"header": "",
|
139
|
+
"content": ""
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"priority": 1,
|
143
|
+
"logoUrl": "",
|
144
|
+
"header": "",
|
145
|
+
"content": ""
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"priority": 1,
|
149
|
+
"logoUrl": "",
|
150
|
+
"header": "",
|
151
|
+
"content": ""
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"HOW_TO_CONTENT": {
|
155
|
+
"logoImageUrl": "",
|
156
|
+
"heading": "",
|
157
|
+
"steps": [
|
158
|
+
"",
|
159
|
+
"",
|
160
|
+
"",
|
161
|
+
""
|
162
|
+
]
|
163
|
+
},
|
164
|
+
"FAQ": [
|
165
|
+
{
|
166
|
+
"question": "",
|
167
|
+
"answer": ""
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"question": "",
|
171
|
+
"answer": ""
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"question": "",
|
175
|
+
"answer": ""
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"question": "",
|
179
|
+
"answer": ""
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"question": "",
|
183
|
+
"answer": ""
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"infographics": [
|
187
|
+
{
|
188
|
+
"image": "",
|
189
|
+
"description": "",
|
190
|
+
"alt": ""
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"image": "",
|
194
|
+
"description": "",
|
195
|
+
"alt": ""
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"image": "",
|
199
|
+
"description": "",
|
200
|
+
"alt": ""
|
201
|
+
}
|
202
|
+
],
|
203
|
+
"author": "lakshmi",
|
204
|
+
"contributors": [
|
205
|
+
{
|
206
|
+
"name": "Debosmita Bedajna"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"name": "Suchita Kasab"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"name": "RK Shree"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"name": "Bandana"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"name": "Manpreet Singh"
|
219
|
+
}
|
220
|
+
],
|
221
|
+
"icon": "📄"
|
222
|
+
}
|