This repository was archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmh.json
More file actions
32 lines (30 loc) · 1.48 KB
/
mh.json
File metadata and controls
32 lines (30 loc) · 1.48 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
/*Comments are ignored in json since bef2a45c35877c3f8ab7ff4c04172ffc174cde8c commit*/
{
// Project settings
"project": {
"name": "test help file", // Project name, will be used in window title and as output filename.
"output-path": "out", // Path of output file.
"temp-path": "temp", // Temporary path where converted markdown files are stored.
"create-gitignore": true, // Create ,gitignore with "*" inside temp and output paths.
"default-file": "file.md" // Default file to display when opened help file or pressed home.
},
// Menu / TOC (Table of contents)
"menu": [
["item name", "file.md"], // first item in array is "item name" its displayed in help file.
["item name", "file.md"], // Secont item is file which will be displayed when pressed on that item in help file.
["item name", "file.md", [ // optional third item is array of same elements, this will hide them inside this item.
["item name", "file.md"],
["item name", "file.md"],
["item name", "file.md"]
]],
["item name", [ // File item in array is optional when item has contents.
["item name", "file.md"],
["item name", "file.md"],
["item name", "file.md"]
]]
],
// ALL files used in this project.
"files": [ // All files listed here will be included in compiled help file.
"file.md"
]
}