Skip to content

Commit 06e873c

Browse files
committed
docs: remove old toctree directives for myst
1 parent 988c2cc commit 06e873c

File tree

5 files changed

+7
-53
lines changed

5 files changed

+7
-53
lines changed

docs/cxx/tutorial/index.md

-10
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,3 @@ This tutorial will walk you through the process of *creating WebAssembly scienti
1212

1313
This [Jupyter notebook
1414
tutorial](https://github.com/InsightSoftwareConsortium/ScientificImageAnalysisVisualizationAndArtificialIntelligenceCourse/blob/master/10_Create_Scientific_WebAssembly_Pipelines.ipynb) also provides an interactive walkthrough.
15-
16-
```{toctree}
17-
:maxdepth: 2
18-
:caption: 📖 Tutorial Steps
19-
20-
hello_world.md
21-
hello_pipeline.md
22-
inputs_outputs.md
23-
debugging.md
24-
```

docs/myst.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -133,25 +133,25 @@ project:
133133
- file: python/itk-webassemblyinterface.md
134134
- title: 🌐 JavaScript / Typescript
135135
children:
136+
- file: typescript/index.md
136137
- file: typescript/browser_io.md
137138
- file: typescript/browser_pipelines.md
138-
- file: typescript/index.md
139139
- file: typescript/node_io.md
140140
- file: typescript/node_pipelines.md
141141
- title: Distribution
142142
children:
143143
- file: typescript/distribution/index.md
144+
- file: typescript/distribution/vite.md
144145
- file: typescript/distribution/node.md
145146
- file: typescript/distribution/umd.md
146-
- file: typescript/distribution/vite.md
147147
- file: typescript/distribution/webpack.md
148148
- title: Interface Types
149149
children:
150+
- file: typescript/interface_types/index.md
150151
- file: typescript/interface_types/BinaryFile.md
151152
- file: typescript/interface_types/BinaryStream.md
152153
- file: typescript/interface_types/Image.md
153154
- file: typescript/interface_types/ImageType.md
154-
- file: typescript/interface_types/index.md
155155
- file: typescript/interface_types/JsonCompatible.md
156156
- file: typescript/interface_types/Mesh.md
157157
- file: typescript/interface_types/MeshType.md
@@ -164,11 +164,11 @@ project:
164164
- file: cxx/interface_types.md
165165
- title: Tutorial
166166
children:
167-
- file: cxx/tutorial/debugging.md
168-
- file: cxx/tutorial/hello_pipeline.md
169-
- file: cxx/tutorial/hello_world.md
170167
- file: cxx/tutorial/index.md
168+
- file: cxx/tutorial/hello_world.md
169+
- file: cxx/tutorial/hello_pipeline.md
171170
- file: cxx/tutorial/inputs_outputs.md
171+
- file: cxx/tutorial/debugging.md
172172
- title: 🔨 Development
173173
children:
174174
- file: development/hacking_itk_wasm.md

docs/typescript/distribution/index.md

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
11
# Distribution
22

33
This sections walks through examples on how to distribution applications for deployment that depend on itk-wasm packages.
4-
5-
```{toctree}
6-
:maxdepth: 1
7-
:caption: 📦 Distribution
8-
9-
umd.md
10-
vite.md
11-
webpack.md
12-
node.md
13-
```

docs/typescript/index.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,4 @@ or from native browser data types, encountered when executed in a web browser
1111
JavaScript runtime.
1212

1313
The **Processing Pipelines** sections describes how to execute processing
14-
pipelines written as C/C++ command line executables in Node.js or the browser.
15-
16-
```{toctree}
17-
:maxdepth: 1
18-
:caption: 🌐 JavaScript/TypeScript
19-
20-
browser_io.md
21-
browser_pipelines.md
22-
node_io.md
23-
node_pipelines.md
24-
```
14+
pipelines written as C/C++ command line executables in Node.js or the browser.

docs/typescript/interface_types/index.md

-16
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,4 @@
22

33
itk-wasm execution pipelines support the following [interface types](https://github.com/InsightSoftwareConsortium/ITK-Wasm/tree/main/packages/core/typescript/itk-wasm/src/interface-types/interface-types.ts):
44

5-
```{toctree}
6-
:maxdepth: 3
7-
:caption: Interface Types
8-
9-
TextFile.md
10-
BinaryFile.md
11-
TextStream.md
12-
BinaryStream.md
13-
Image.md
14-
ImageType.md
15-
Mesh.md
16-
MeshType.md
17-
PolyData.md
18-
JsonCompatible.md
19-
```
20-
215
These interfaces types are supported in the [Emscripten interface](/api/browser_pipelines), [WASI](https://wasi.dev/) embedding interfaces, and native or virtual [filesystem IO](/introduction/file_formats/index.html). They are intended to be forward-compatible with the [WebAssembly Component Model](https://github.com/WebAssembly/component-model).

0 commit comments

Comments
 (0)