yarn start
docs
├── home.mdx
├── lego # These are configured as separate pages through
│ │ # docusaurs magic in sidebars.js.
│ ├── 00-introduction.mdx # This is the root page for the lego docs.
│ ├── 01-first_section # Sections here represent groups on the sidebar.
│ │ ├── 00-first_doc.mdx # Doc files are written in MDX.
│ │ └── _category_.yaml # Each section has a _category_.yaml file.
│ └── 02-second_section # Positions on the sidebar are determined by the
│ │ # numbering in XX-title. Note that "XX-" does not
│ │ # show up in the URL.
│ ├── ...
│ └── _category_.yaml
├── others
│ ├── 00-introduction.mdx
│ └── ...
├── rcj
│ ├── 00-introduction.mdx
│ └── ...
└── vex
├── 00-introduction.mdx
└── ...
import Tabs from '@theme/Tabs'; <!-- Put imports on top for consistency -->
import TabItem from '@theme/TabItem';
# Title <!--- This will be the title of the webpage and must show up first -->
<!-- Content -->
The MDX syntax of doc files allow you to use Markdown, HTML, and ReactJS code.
For information on how to write markdown, refer to www.markdownguide.org/basic-syntax and docusaurus.io/docs/markdown-features.
Website should be automatically deployed to the gh-pages
branch when a push or
pull request is made to the main
branch.
For manual deployment, run the following:
GIT_USER=<Your GitHub username> USE_SSH=true DEPLOYMENT_BRANCH=gh-pages yarn deploy
YAY PASSED THE 100 COMMITS MILESTONE 🥳