Skip to main content

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

  1. Create a new file in content/ (e.g., content/my-new-page.md).
  2. 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:

![My Image](/img/my-image.png)

Or place them relative to your markdown file and reference them by path.

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.