-
Notifications
You must be signed in to change notification settings - Fork 21
/
config.json
107 lines (107 loc) · 2.44 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
{
"title": "[TITLE]",
"author": {
"name": "[FULL_NAME]",
"avatar": "https://micro.blog/[USERNAME]/avatar.jpg",
"username": "[USERNAME]",
"activitypub": {
"username": "[ACTIVITYPUB_USERNAME]",
"url": "[ACTIVITYPUB_ACTOR]"
}
},
"baseURL": "[SCHEME]://[HOSTNAME]/",
"mediaTypes": {
"application/json": {
"suffixes": [ "json" ]
}
},
"outputFormats": {
"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" ],
"section": [ "HTML" ],
"taxonomy": [ "HTML", "RSS", "JSON" ],
"term": [ "HTML", "RSS", "JSON" ]
},
"taxonomies": {
"category": "categories"
},
"rssLimit": 25,
"uglyURLs": false,
"blackfriday": {
"fractions": false
},
"markup": {
"goldmark": {
"renderer": {
"unsafe": true
}
}
},
"enableRobotsTXT": true,
"languageCode": "[LANGUAGE]",
"paginate": 25,
"pluralizeListTitles": false,
"params": {
"description": "Follow <a href=\"https://micro.blog/[USERNAME]\">@[USERNAME] on Micro.blog</a>.",
"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": [],
"feeds": {
"bookmarks_json": "[FEEDS_BOOKMARKS_JSON]"
}
}
}