Stuff
Setting up the footer - Material for MkDocs
Setting up navigation - Material for MkDocs
More stuff
Feeling stuffy?
Code
Inline code
like that.
Plain code block
BASH code block
pipx install uv
mkdir explore-mkdocs-material
cd explore-mkdocs-material/
uv venv
. .venv/bin/activate
uv pip install mkdocs-material
uv pip freeze | uv pip compile - -o requirements.txt
code .
mkdocs new .
mkdocs serve
Note: Also exploring uv.
Python code block
#!/usr/bin/env python3
# This script will self-destruct.
from pathlib import Path
Path(__file__).unlink()