We appreciate your interest in contributing to this project! This guide provides all the necessary steps to help you get started.
This documentation is built using mdBook, which requires Rust
and Cargo
to be installed.
Note: If you're on Windows you might need to install Visual Studio Build Tools
before installing mdbook:
- Download Build Tools for Visual Studio from the official Microsoft site:
- Scroll down and download "Build Tools for Visual Studio".
- Open the installer and select "C++ build tools".
- Ensure the following components are selected:
- MSVC v143 (or latest)
- Windows 10 SDK (or latest)
- CMake (optional but recommended)
- Open "x86 Native Tools Command Prompt for VS" from the Start menu.
- Run the following command to set Rust to the stable version:
rustup default stable
cargo install mdbook
To fully utilize this documentation, you also need to install mdbook-tabs
. You can do so with the following command:
cargo install mdbook-tabs
Before proceeding, ensure you have completed the installation steps above. Clone this repository and switch to the main
branch. Then, use the following command to generate a local preview:
mdbook serve
This will launch a local web server at localhost:3000
, automatically updating the content whenever changes are made.
- Familiarize yourself with the mdBook documentation to understand the basics.
- Create a new branch based on
main
. - File names should follow the
kebab-case
convention, using hyphens (-
) instead of spaces. - Use proper Markdown syntax and refer to the official documentation for formatting guidelines.
- Once your changes are complete, submit a pull request (PR) against the
main
branch for review.
Thank you for your contributions!