Skip to content

Commit 8af045f

Browse files
committed
docs: add internal api to the docs
1 parent 67d05aa commit 8af045f

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ pages = [
4343
],
4444
"MLIR API" => "api/mlirc.md",
4545
"XLA" => "api/xla.md",
46+
"Internal API" => "api/internal.md",
4647
],
4748
]
4849

docs/src/.vitepress/config.mts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ export default defineConfig({
7878
{ text: "MLIR API", link: "/api/mlirc" },
7979
{ text: "XLA", link: "/api/xla" },
8080
],
81-
}
81+
},
82+
{ text: "Internal API", link: "/api/internal" },
8283
],
8384
},
8485
{
@@ -132,6 +133,7 @@ export default defineConfig({
132133
{ text: "XLA", link: "/api/xla" },
133134
],
134135
},
136+
{ text: "Internal API", link: "/api/internal" },
135137
],
136138
},
137139
},

docs/src/api/internal.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
```@meta
2+
CollapsedDocStrings = true
3+
```
4+
5+
# Internal API
6+
7+
These functions are not part of the public API and are subject to change at any time.
8+
9+
```@docs
10+
Reactant.REDUB_ARGUMENTS_NAME
11+
Reactant.within_reactant_interpreter
12+
```

0 commit comments

Comments
 (0)