mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-17 12:14:21 +00:00

* Preparing content for MDX v3 * upgrade dcusarus to v3 * upgrade to v3 * merge main to branch * space * change node version to 18 * merge main * change setup-node version * bug fix: added escape when needed * added escape characters in docstrings * upgraded docusaurus to 3.0.1 * polishing * restored commented out link * rename file * removed backtick * Add support for MD files in Docusaurus * Add support for MD files in Docusaurus * Add support for MD files in Docusaurus * polishing * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * merge with main and build scripts added --------- Co-authored-by: Davor Runje <davor@airt.ai> Co-authored-by: Shaokun Zhang <shaokunzhang529@gmail.com> Co-authored-by: Victor Dibia <victordibia@microsoft.com>
23 lines
599 B
JavaScript
23 lines
599 B
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
module.exports = {
|
|
docsSidebar: [
|
|
'Getting-Started',
|
|
'Installation',
|
|
{'Use Cases': [{type: 'autogenerated', dirName: 'Use-Cases'}]},
|
|
'Contribute',
|
|
'Research',
|
|
],
|
|
// pydoc-markdown auto-generated markdowns from docstrings
|
|
referenceSideBar: [require("./docs/reference/sidebar.json")]
|
|
};
|