Skip to content

Commit

Permalink
docs: remove old toctree directives for myst
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Jul 15, 2024
1 parent 988c2cc commit 06e873c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 53 deletions.
10 changes: 0 additions & 10 deletions docs/cxx/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,3 @@ This tutorial will walk you through the process of *creating WebAssembly scienti

This [Jupyter notebook
tutorial](https://github.com/InsightSoftwareConsortium/ScientificImageAnalysisVisualizationAndArtificialIntelligenceCourse/blob/master/10_Create_Scientific_WebAssembly_Pipelines.ipynb) also provides an interactive walkthrough.

```{toctree}
:maxdepth: 2
:caption: 📖 Tutorial Steps
hello_world.md
hello_pipeline.md
inputs_outputs.md
debugging.md
```
12 changes: 6 additions & 6 deletions docs/myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,25 +133,25 @@ project:
- file: python/itk-webassemblyinterface.md
- title: 🌐 JavaScript / Typescript
children:
- file: typescript/index.md
- file: typescript/browser_io.md
- file: typescript/browser_pipelines.md
- file: typescript/index.md
- file: typescript/node_io.md
- file: typescript/node_pipelines.md
- title: Distribution
children:
- file: typescript/distribution/index.md
- file: typescript/distribution/vite.md
- file: typescript/distribution/node.md
- file: typescript/distribution/umd.md
- file: typescript/distribution/vite.md
- file: typescript/distribution/webpack.md
- title: Interface Types
children:
- file: typescript/interface_types/index.md
- file: typescript/interface_types/BinaryFile.md
- file: typescript/interface_types/BinaryStream.md
- file: typescript/interface_types/Image.md
- file: typescript/interface_types/ImageType.md
- file: typescript/interface_types/index.md
- file: typescript/interface_types/JsonCompatible.md
- file: typescript/interface_types/Mesh.md
- file: typescript/interface_types/MeshType.md
Expand All @@ -164,11 +164,11 @@ project:
- file: cxx/interface_types.md
- title: Tutorial
children:
- file: cxx/tutorial/debugging.md
- file: cxx/tutorial/hello_pipeline.md
- file: cxx/tutorial/hello_world.md
- file: cxx/tutorial/index.md
- file: cxx/tutorial/hello_world.md
- file: cxx/tutorial/hello_pipeline.md
- file: cxx/tutorial/inputs_outputs.md
- file: cxx/tutorial/debugging.md
- title: 🔨 Development
children:
- file: development/hacking_itk_wasm.md
Expand Down
10 changes: 0 additions & 10 deletions docs/typescript/distribution/index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
# Distribution

This sections walks through examples on how to distribution applications for deployment that depend on itk-wasm packages.

```{toctree}
:maxdepth: 1
:caption: 📦 Distribution
umd.md
vite.md
webpack.md
node.md
```
12 changes: 1 addition & 11 deletions docs/typescript/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,4 @@ or from native browser data types, encountered when executed in a web browser
JavaScript runtime.

The **Processing Pipelines** sections describes how to execute processing
pipelines written as C/C++ command line executables in Node.js or the browser.

```{toctree}
:maxdepth: 1
:caption: 🌐 JavaScript/TypeScript
browser_io.md
browser_pipelines.md
node_io.md
node_pipelines.md
```
pipelines written as C/C++ command line executables in Node.js or the browser.
16 changes: 0 additions & 16 deletions docs/typescript/interface_types/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,4 @@

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):

```{toctree}
:maxdepth: 3
:caption: Interface Types
TextFile.md
BinaryFile.md
TextStream.md
BinaryStream.md
Image.md
ImageType.md
Mesh.md
MeshType.md
PolyData.md
JsonCompatible.md
```

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 comments on commit 06e873c

Please sign in to comment.