Getting Started with MkDocs¶
Reference: here
virtualenv -p python3 venv
. venv/bin/activate
pip install mkdocs
mkdocs new my-wiki
cd my-wiki
mkdocs serve -a 0.0.0.0:27015
Site Name¶
```yaml tab="mkdocs.yml" site_name: attie.co.uk
## Content
```bash
rm -rf ./docs/
mkdir ./docs
echo "# Hello" > docs/index.md
Menu¶
```yaml tab="mkdocs.yml" nav: - Home: index.md - About: about.md
## Theme
```yaml tab="mkdocs.yml"
theme: readthedocs
Build¶
mkdocs build