Files
archived-tauri-docs/sidebars.js
Lorenzo Lewis 77f6c8a356 Update JS Doc Generation (#869)
* Update update-docs.yml

* Add package to generate docs

* Switch repos where docs are generated

* Test repo integration

* Temporarily disable any rusty stuffs

* Save docs as artifacts

* .gitignore trailing whitespace

* Switch to our custom repo

* Fix typedoc plugin path

* Start to put the repo back together

* Remove old, commented out code

* Update navbar and sidebar for updated JS path

* Remove old JS API files

* Add newly generated JS API files

* Run patch

* Fix broken links

* Add in typedoc-plugin-mdn-links

* Pin dep

* Update with markdown changes

* Add option to hide the horizontal divider on a page

* Update doc formatting

* Add `excludePrivate` to hide private window property

* Update tables to include row links

* Embed titles in backticks

* Fix output dir

* Fix json output

* Set docs to output directly to tauri-docs dir

* Update docs

* Fix whitespace in tables

* Updated docs for @amrbashir <3

* CSS makes @amrbashir a happy boy

* Update deps

* Update docs

* Add redirects for old modules, classes, enums, and interfaces routes

* Don't splat those redirects

* Update netlify.toml

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>

* Remove old CSS and make minimum heading size an h4

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
2022-09-13 17:02:31 +01:00

41 lines
572 B
JavaScript

const guides = [
{
type: 'category',
label: 'Guides',
link: { type: 'doc', id: 'guides/readme' },
items: [
{
type: 'autogenerated',
dirName: 'guides',
},
],
},
]
const references = [
{
type: 'category',
label: 'References',
link: { type: 'doc', id: 'references/readme' },
items: [
{
type: 'autogenerated',
dirName: 'references',
},
],
},
]
const js = [
{
type: 'autogenerated',
dirName: 'api/js',
},
]
module.exports = {
guides,
references,
js,
}