mirror of
https://github.com/tauri-apps/tauri-docs.git
synced 2026-01-31 00:35:16 +01:00
* 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>
41 lines
572 B
JavaScript
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,
|
|
}
|