-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate REST API documentation in Docusaurus website (#7)
* Add docusaurus-plugin-openapi-docs * Document how to update the OpenAPI documentation * Move documentation links from top to sidebar * Expand "User Guide" category automatically * Upgrade Docusaurus from 3.4.0 to 3.5.2 * Upgrade Yarn from 4.1.0 to 4.4.1 * Generate REST API documenation
- Loading branch information
Showing
277 changed files
with
151,691 additions
and
2,166 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
id: {{{id}}} | ||
title: "{{{title}}}" | ||
description: "{{{frontMatter.description}}}" | ||
{{^api}} | ||
sidebar_label: Introduction | ||
{{/api}} | ||
{{#api}} | ||
sidebar_label: "{{{title}}}" | ||
{{/api}} | ||
{{^api}} | ||
sidebar_position: 0 | ||
{{/api}} | ||
hide_title: true | ||
{{#api}} | ||
hide_table_of_contents: true | ||
{{/api}} | ||
{{#json}} | ||
api: {{{json}}} | ||
{{/json}} | ||
{{#api.method}} | ||
sidebar_class_name: "{{{api.method}}} api-method" | ||
{{/api.method}} | ||
{{#infoPath}} | ||
info_path: {{{infoPath}}} | ||
{{/infoPath}} | ||
custom_edit_url: null | ||
{{#frontMatter.proxy}} | ||
proxy: {{{frontMatter.proxy}}} | ||
{{/frontMatter.proxy}} | ||
{{#frontMatter.hide_send_button}} | ||
hide_send_button: true | ||
{{/frontMatter.hide_send_button}} | ||
{{#frontMatter.show_extensions}} | ||
show_extensions: true | ||
{{/frontMatter.show_extensions}} | ||
--- | ||
|
||
{{{markdown}}} |
Oops, something went wrong.