forked from microsoft/MixedRealityToolkit-Unity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docfx.json
64 lines (64 loc) · 2.27 KB
/
docfx.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
{
"metadata": [
{
// generate meta data for api docs
"src": [
{
"files": [ "**/*.sln", "**/*.cs" ],
"exclude": [ "**/bin/**", "**/obj/**" ],
"src": "Assets"
}
],
"dest": "obj/api"
}
],
"build": {
"content": [
{
// generate html for api docs
"files": [ "**/*.yml"],
"src": "obj/api", // temp meta data folder from previous step
"dest": "api"
},
{
// generate html for conceptual docs
"files": ["*.md", "*.yml", //root dir md and toc files
"Documentation/**/*.md", "Assets/**/*.md", "External/Documentation/**/*.md", "External/HowTo/**/*.md", // conceptual docs subfolders md files
"Documentation/**/*.yml", "Assets/**/*.yml" // conceptual docs subfolders toc yml files
]
}
],
"resource": [
// resource files that will be copied over without modifications
{
// website related resource files
"files": ["index.html", "web/**"],
},
{
// resources documentation is referring to (eg images, videos, audio, etc)
"files": [ "External/ReadMeImages/**", "External/Documentation/Images/**" ],
},
],
"template": [
// gets default template (html/css/jscript) from docfx and copies subsequent templates on top
"default",
"templates/mrtk"
],
"globalMetadata": {
// global docfx config - see docfx documentation for more config params (https://dotnet.github.io/docfx/tutorial/docfx.exe_user_manual.html)
"_appTitle": "Mixed Reality Toolkit Documentation",
"_enableSearch": true,
"_disableNavbar": false,
"_appLogoPath": "External/ReadMeImages/mrt_logo_icon.png",
"_appFaviconPath": "External/ReadMeImages/favicon.ico"
// re-add this section if you want to publish a version of the docs that keeps the "improve this doc" link pointing to mrtk_development branch
//"_gitContribute": {
// "repo": "https://github.com/Microsoft/MixedRealityToolkit-Unity",
// "branch": "mrtk_development"
//}
},
"markdownEngineName": "markdig",
"dest": "doc",
"xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ] //msdn xref service for resolving crefs
}
}