See the site live at https://bhi-research.github.io/
- MkDocs: Project documentation with Markdown
- Material for MkDocs
- Deploying your docs
- Custom domains and GitHub Pages
(base) $ conda create -n mkdocs-env python=3.12
(base) conda $ activate mkdocs-env
(mkdocs-env) $ pip install -r requirements.txt
(mkdocs-env) $ mkdocs new .
# Updating packages before updating
(mkdocs-env) $ pip install --upgrade -r requirements.txt
# run
(mkdocs-env) $ mkdocs serve
# deploy
(mkdocs-env) $ mkdocs gh-deploymkdocs new [dir-name]- Create a new project.mkdocs serve- Start the live-reloading docs server.mkdocs build- Build the documentation site.mkdocs help- Print this help message.
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.