How to edit document content
All documentation content is located in the content/ directory.
File Format
- Files are written in Markdown (
.md) or MDX (.mdx). - Standard Markdown syntax is supported, along with Docusaurus-specific features like Admonitions, Tabs, and React components.
Creating New Pages
- Create a new file in
content/(e.g.,content/my-new-page.md). - Add Front Matter at the top of the file:
---
id: my-new-page
title: My New Page
sidebar_label: New Page
---
# My New Page
Start writing your content here...
Adding Images
You can store images in the static/img/ directory and reference them like this:

Or place them relative to your markdown file and reference them by path.
Sidebar Organization
The sidebar is configured in sidebars.js. Currently, it is set to manually order the top-level documentation sections. If you add new top-level files, you may need to update sidebars.js to include them. Sub-directories can be configured to auto-generate their sidebars or be manually defined.