-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
44 lines (44 loc) · 1.56 KB
/
Copy pathplugin.json
File metadata and controls
44 lines (44 loc) · 1.56 KB
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
{
"name": "Series Navigator",
"description": "Define post series with a visual builder and auto-inject navigation into posts.",
"license": "GPL-3.0",
"author": "InPoint Automation",
"version": "1.0.0",
"scope": "site",
"minimumPubliiVersion": "0.46.0",
"usePluginSettingsView": true,
"config": [
{
"name": "showPartNumbers",
"label": "Show part numbers in series list",
"group": "Display",
"type": "checkbox",
"value": false,
"note": "When enabled, shows 'Part 1:', 'Part 2:', etc. before each title in the TOC."
},
{
"name": "nextLinkText",
"label": "Next link prefix",
"group": "Display",
"type": "text",
"value": "Next:",
"note": "Text shown before the next post title at the bottom (e.g., 'Next:', 'Continue reading:', 'Up next:')"
},
{
"name": "seriesHeading",
"label": "Series heading text",
"group": "Display",
"type": "text",
"value": "In this series",
"note": "Heading shown above the series TOC"
},
{
"name": "seriesDataJson",
"label": "Series data (managed by the series builder UI - do not edit manually)",
"group": "Data",
"type": "textarea",
"value": "{\"series\":[]}",
"note": "This field stores series definitions as JSON. Use the series builder (custom settings view) to manage this."
}
]
}