-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add option to generate pdf using 'docfx --serve docfx-pdf.json' and a…
…dd pdf to package.
- Loading branch information
Showing
8 changed files
with
86 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.onnx filter=lfs diff=lfs merge=lfs -text | ||
*.onnx filter=lfs diff=lfs merge=lfs -text | ||
*.pdf filter=lfs diff=lfs merge=lfs -text |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"email": "[email protected]", | ||
"url": "https://www.doji-tech.com/" | ||
}, | ||
"documentationUrl": "https://www.doji-tech.com/midas/", | ||
"documentationUrl": "https://docs.doji-tech.com/com.doji.midas/", | ||
"samples": [ | ||
{ | ||
"displayName": "Shared Sample Assets", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"metadata": [ | ||
{ | ||
"src": [ | ||
{ "files": [ "doji.midas.csproj" ], "src": "../projects/Midas" } | ||
], | ||
"dest": "api", | ||
"includePrivateMembers": false, | ||
"disableGitFeatures": false, | ||
"disableDefaultFilter": false, | ||
"noRestore": false, | ||
"namespaceLayout": "flattened", | ||
"memberLayout": "samePage", | ||
"EnumSortOrder": "declaringOrder", | ||
"allowCompilationErrors": false, | ||
"globalNamespaceId": "Global", | ||
"filter": "filterConfig.yml" | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ | ||
"api/**.yml", | ||
"api/index.md" | ||
] | ||
}, | ||
{ | ||
"files": [ | ||
"manual/**.md", | ||
"manual/**/toc.yml", | ||
"toc.yml", | ||
"*.md" | ||
] | ||
}, | ||
{ "files": [ "pdf/toc.yml" ] } | ||
], | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"images/**", | ||
] | ||
} | ||
], | ||
"output": "_site", | ||
"globalMetadataFiles": [], | ||
"globalMetadata": { | ||
"_appFaviconPath": "images/favicon.ico", | ||
"_appLogoPath": "images/doji.png", | ||
"_appLogoUrl": "https://www.doji-tech.com/", | ||
"_disableContribution": true, | ||
"pdf": true, | ||
"pdfTocPage": true, | ||
"pdfFileName": "com.doji.midas.pdf" | ||
}, | ||
"fileMetadataFiles": [], | ||
"template": [ | ||
"default", | ||
"modern", | ||
"template" | ||
], | ||
"postProcessors": [], | ||
"keepFileLink": false, | ||
"disableGitFeatures": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
order: 200 | ||
items: | ||
- name: Manual | ||
href: ../manual/toc.yml | ||
- name: Scripting API | ||
href: ../api/toc.yml |