-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
135 lines (135 loc) · 2.53 KB
/
config.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"title": "[TITLE]",
"author": {
"name": "[FULL_NAME]",
"avatar": "https://micro.blog/[USERNAME]/avatar.jpg",
"username": "[USERNAME]"
},
"baseURL": "[SCHEME]://[HOSTNAME]/",
"mediaTypes": {
"application/json": {
"suffixes": [
"json"
]
},
"text/debug": {
"suffixes": [
"debug.html"
]
}
},
"outputFormats": {
"DEBUG": {
"name": "DEBUG",
"mediaType": "text/debug",
"path": "debug",
"isHTML": true
},
"RSS": {
"baseName": "feed"
},
"JSON": {
"baseName": "feed"
},
"RSD": {
"mediaType": "application/xml",
"baseName": "rsd",
"isPlainText": true,
"notAlternative": true
},
"ArchiveJSON": {
"mediaType": "application/json",
"path": "archive",
"baseName": "index",
"isPlainText": true,
"notAlternative": true
},
"PhotosJSON": {
"mediaType": "application/json",
"path": "photos",
"baseName": "index",
"isPlainText": true,
"notAlternative": true
},
"PodcastXML": {
"mediaType": "application/rss+xml",
"baseName": "podcast",
"isPlainText": true,
"notAlternative": true
},
"PodcastJSON": {
"mediaType": "application/json",
"baseName": "podcast",
"isPlainText": true,
"notAlternative": true
}
},
"outputs": {
"home": [
"HTML",
"RSS",
"JSON",
"RSD",
"ArchiveJSON",
"PhotosJSON",
"PodcastXML",
"PodcastJSON"
],
"page": [
"HTML",
"DEBUG"
],
"section": [
"HTML"
],
"taxonomy": [
"HTML",
"RSS",
"JSON"
],
"taxonomyTerm": [
"HTML",
"RSS",
"JSON"
]
},
"taxonomies": {
"category": "categories"
},
"rssLimit": 25,
"uglyURLs": false,
"blackfriday": {
"fractions": false
},
"markup": {
"goldmark": {
"renderer": {
"unsafe": true
}
}
},
"enableRobotsTXT": true,
"languageCode": "[LANGUAGE]",
"paginate": 12,
"params": {
"description": "Follow <a href=\"https://micro.blog/[USERNAME]\">@[USERNAME] on Micro.blog</a>.",
"form_action_url": "https://example.com",
"itunes_description": "[ITUNES_DESCRIPTION]",
"itunes_category": "[ITUNES_CATEGORY]",
"itunes_subcategory": "[ITUNES_SUBCATEGORY]",
"itunes_author": "[ITUNES_AUTHOR]",
"itunes_email": "[ITUNES_EMAIL]",
"itunes_cover": "[ITUNES_COVER]",
"twitter_username": "[TWITTER_USERNAME]",
"github_username": "[GITHUB_USERNAME]",
"instagram_username": "[INSTAGRAM_USERNAME]",
"site_id": "[SITE_ID]",
"paginate_home": false,
"paginate_categories": false,
"paginate_replies": false,
"theme_seconds": "0",
"plugins_css": [],
"plugins_js": [],
"plugins_html": []
}
}