-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnacara.config.json
113 lines (113 loc) · 3.73 KB
/
nacara.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
108
109
110
111
112
113
{
"serverPort": 8081,
"siteMetadata": {
"title": "Nacara",
"url": "https://mangelmaxime.github.io",
"baseUrl": "/Nacara/",
"editUrl" : "https://github.com/MangelMaxime/Nacara/edit/master/docs",
"favIcon": "favicon-180x180.png"
},
"navbar": {
"start": [
{
"pinned": true,
"label": "Docs",
"items": [
{
"section": "nacara",
"label": "Nacara",
"description": "Learn more about how Nacara works,and how to setup it in your project",
"url": "/Nacara/nacara/introduction.html"
},
"divider",
{
"section": "nacara-layout-standard",
"label": "Nacara.Layout.Standard",
"description": "Default layout used by Nacara",
"url": "/Nacara/nacara-layout-standard/introduction.html"
},
"divider",
{
"section": "nacara-apigen",
"label": "Nacara.ApiGen",
"description": "API documentation generator for Nacara",
"url": "/Nacara/nacara-apigen/introduction.html"
}
]
},
{
"section": "reference",
"label": "API",
"url": "/Nacara/reference/Nacara.Core/index.html"
},
{
"label": "Changelogs",
"items": [
{
"section": "changelogs",
"label": "Nacara",
"url": "/Nacara/changelogs/nacara.html"
},
{
"section": "changelogs",
"label": "Nacara.Core",
"url": "/Nacara/changelogs/nacara-core.html"
},
{
"section": "changelogs",
"label": "Nacara.Standard.Layout",
"url": "/Nacara/changelogs/nacara-layout-standard.html"
},
{
"section": "changelogs",
"label": "Nacara.ApiGen",
"url": "/Nacara/changelogs/nacara-apigen.html"
}
]
},
{
"url": "https://gitter.im/fable-compiler/Fable",
"label": "Support"
},
{
"url": "https://www.patreon.com/MangelMaxime",
"icon": "fab fa-patreon",
"label": "Donate",
"iconColor": "#ff424b"
}
],
"end": [
{
"url": "https://github.com/MangelMaxime/Nacara",
"icon": "fab fa-github",
"label": "GitHub"
},
{
"url": "https://twitter.com/MangelMaxime",
"icon": "fab fa-twitter",
"label": "Twitter"
}
]
},
"remarkPlugins": [
{
"resolve": "gatsby-remark-vscode",
"property": "remarkPlugin",
"options": {
"theme": "Atom One Light",
"extensions": [
"vscode-theme-onelight"
]
}
},
{
"resolve": "remark-github",
"options": {
"repository": "MangelMaxime/Nacara"
}
}
],
"layouts": [
"nacara-layout-standard"
]
}