-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.yml
74 lines (73 loc) · 1.79 KB
/
settings.yml
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
featured_lists:
default: >-
[{"title":"Latest Topics","length":3,"filter":"latest", "tag":"", "category":"","link":"/latest", "solved":""},
{"title":"Category: Site Feedback","length":3,"filter":"latest", "tag":"", "category":"2","link":"/c/2", "solved":""},
{"title":"Tag: featured","length":3,"filter":"latest", "tag":"featured", "category":"","link":"/tag/featured", "solved":""}]
json_schema: '{
"type": "array",
"format": "table",
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The list title"
},
"length": {
"type": "string",
"description": "Set the number of topics"
},
"filter": {
"type": "string",
"description": "Choose the type of list",
"enum": [
"latest",
"hot",
"top",
"new",
"unread"
]
},
"solved": {
"type": "string",
"description": "Filter by solved or unsolved",
"enum": [
"",
"solved",
"unsolved"
]
},
"category": {
"type": "string",
"description": "Filter by category id"
},
"tag": {
"type": "string",
"description": "Filter by tag name"
},
"link": {
"type": "string",
"description": "Where the list should link to"
},
"classname": {
"type": "string",
"description": "Set a CSS class name for custom styles"
}
},
"additionalProperties": false
}
}'
show_on:
default: homepage
type: enum
choices:
- everywhere
- homepage
- custom
- latest/top/new/categories
- latest
- categories
- top
plugin_outlet:
default: "above-main-container"