This guide will help you quickly get started with MkDocs.
To install MkDocs, use pip:
pip install mkdocs mkdocs-multirepo-plugin mkdocs-material pymdown-extensionsTo view your documentation locally, navigate to the project directory and run:
mkdocs serveYour documentation will be available at http://127.0.0.1:8000/ in your browser.
MkDocs has built-in support for deploying to GitHub Pages.
mkdocs gh-deployThis command will automatically push the contents of the site/ directory to the gh-pages branch of your repository. The site will be available at https://<.username.>.github.io/<.repository.>/.
The configuration file for MkDocs is mkdocs.yml, where you can customize the site name, theme, and other settings.