mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
Add workflow to update Objective-C API docs. Remove the Objective-C API doc generation step from the packaging pipeline. There are similar workflows for automatically updating other language API docs. This change enables this for Objective-C too.
17 lines
572 B
Markdown
17 lines
572 B
Markdown
# Objective-C API Documentation
|
|
|
|
The API should be documented with comments in the [public header files](../include).
|
|
|
|
## Documentation Generation
|
|
|
|
The [Jazzy](https://github.com/realm/jazzy) tool is used to generate documentation from the code.
|
|
|
|
To generate documentation, from the repo root, run:
|
|
|
|
```bash
|
|
jazzy --config objectivec/docs/jazzy_config.yaml --output <output directory>
|
|
```
|
|
|
|
The generated documentation website files will be in `<output directory>`.
|
|
|
|
[main_page.md](./main_page.md) contains content for the main page of the generated documentation website.
|