Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit a52b583

Browse files
committed
Add docfx docs infrastructure
1 parent 7b834e2 commit a52b583

File tree

17 files changed

+822
-0
lines changed

17 files changed

+822
-0
lines changed

.config/dotnet-tools.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"docfx": {
6+
"version": "2.75.3",
7+
"commands": [
8+
"docfx"
9+
]
10+
}
11+
}
12+
}

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
*.ico binary

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
###############
2+
# folder #
3+
###############
4+
/**/DROP/
5+
/**/TEMP/
6+
/**/packages/
7+
/**/bin/
8+
/**/obj/
9+
_exported_templates
10+
_site

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "docfx-tools"]
2+
path = docfx-tools
3+
url = https://github.com/bonsai-rx/docfx-tools
4+
[submodule "src/onix-refactor"]
5+
path = src/onix-refactor
6+
url = https://github.com/neurogears/onix-refactor.git

LICENSE

Lines changed: 427 additions & 0 deletions
Large diffs are not rendered by default.

api/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
###############
2+
# temp file #
3+
###############
4+
*.yml
5+
.manifest

articles/introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Introduction

articles/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- href: ../index.md
2+
- href: introduction.md

docfx-tools

Submodule docfx-tools added at dc5044a

docfx.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"metadata": [
3+
{
4+
"src": [
5+
{
6+
"files": [
7+
"src/**.csproj"
8+
]
9+
}
10+
],
11+
"dest": "api",
12+
"filter": "filter.yml"
13+
}
14+
],
15+
"build": {
16+
"content": [
17+
{
18+
"files": [
19+
"**/*.{md,yml}"
20+
],
21+
"exclude": [
22+
"_site/**",
23+
"docfx-tools/**",
24+
"filter.yml"
25+
]
26+
}
27+
],
28+
"resource": [
29+
{
30+
"files": [
31+
"logo.svg",
32+
"favicon.png",
33+
"images/**",
34+
"workflows/**"
35+
]
36+
}
37+
],
38+
"output": "_site",
39+
"overwrite": [
40+
{
41+
"files": [
42+
"apidoc/**.md"
43+
],
44+
"exclude": [
45+
"obj/**",
46+
"_site/**"
47+
]
48+
}
49+
],
50+
"template": [
51+
"default",
52+
"modern",
53+
"docfx-tools/template",
54+
"template"
55+
],
56+
"globalMetadata": {
57+
"_enableNewTab": true,
58+
"_enableSearch": true,
59+
"pdf": false,
60+
"_appFooter": "&copy; 2024 Open Ephys and Contributors. Made with <a href=\"https://dotnet.github.io/docfx\">docfx</a>",
61+
"_appFaviconPath": "favicon.png"
62+
},
63+
"markdownEngineName": "markdig",
64+
"markdownEngineProperties": {
65+
"markdigExtensions": [
66+
"attributes",
67+
"customcontainers"
68+
]
69+
},
70+
"xref": [
71+
"https://bonsai-rx.org/docs/xrefmap.yml",
72+
"https://horizongir.github.io/opencv.net/xrefmap.yml",
73+
"https://horizongir.github.io/reactive/xrefmap.yml"
74+
]
75+
}
76+
}

0 commit comments

Comments
 (0)