-
Notifications
You must be signed in to change notification settings - Fork 1
/
jazzy.json
65 lines (64 loc) · 1.61 KB
/
jazzy.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
{
"xcodebuild_arguments": ["-scheme", "MarcoKit"],
"author": "Yan Zhulanow",
"author_url": "https://marta.yanex.org",
"module": "MarcoKit",
"module_version": "1.0",
"source_directory": ".",
"framework_root": ".",
"output": "docs/api",
"use_safe_filenames": true,
"hide_documentation_coverage": true,
"skip_undocumented": true,
"readme": "README.md",
"theme": "fullwidth",
"custom_categories":
[
{
"name": "Values",
"children": [
"MarcoValue",
"MarcoDocument",
"MarcoNumberLiteral",
"MarcoIntLiteral",
"MarcoDoubleLiteral",
"MarcoStringLiteral",
"MarcoBoolLiteral",
"MarcoArray",
"MarcoObject",
"MarcoIdentifier",
"MarcoNullLiteral"
]
},
{
"name": "Parsing",
"children": [
"Marco",
"MarcoParsingError",
"MarcoNonStrictParsingError"
]
},
{
"name": "Visitor",
"children": [
"MarcoVisitor"
]
}, {
"name": "Extensions",
"children": [
"Int",
"Int32",
"UInt32",
"Int64",
"UInt64",
"NSColor",
"Float",
"Double",
"CGFloat",
"String",
"Bool",
"NSNull"
]
}
]
}