Palomero Lab How-To
This repository ships the MkDocs theme and build configuration for the
Palomero Lab how-to site. Pages live in
docs/ as plain
markdown files; see
docs/example.md
for the features the theme supports (admonitions, tabs, fenced code with a
copy button, and the last-updated macro).
This file is published as the site's home page at the URL above
(docs/index.md is a symlink to this README).
Building
Docs are built with mkdocs and hosted on GitHub Pages.
Local setup
You can install dependencies with either pip or micromamba.
Option 1: pip
pipdocs: https://pip.pypa.io/en/stable/installation/- Create and activate a virtual environment:
python3 -m venv .venvsource .venv/bin/activate- Install requirements:
pip install -r requirements.txt
Option 2: micromamba
micromambadocs: https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html- Create env from
environment.yml: micromamba env create -f environment.yml- Activate env:
micromamba activate how-to- This environment installs
mkdocswith conda-forge and installs the remaining Python packages fromrequirements.txtvia pip.
Build/serve docs
mkdocs buildmkdocs serve
Page last updated on 2026-08-18.