mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
721 B
721 B
Tutorial
How to create a MkDocs site.
This is a summary of the tutorial on mkdocs.org.
Setup site
- Create pages.
- Create
docsdirectory. - Create
index.md - Create other pages.
- Create
- Setup config.
- Create
mkdocs.ymlat project root. - Setup navbar in
mkdocs.yml.nav: - Home: index.md - About: about.md - Choose a theme.
theme: readthedocs
- Create
- Create a favicon.
- It will be picked up this path:
docs/img/favicon.ico.
- It will be picked up this path:
Further configuration
See Configuration page on MkDocs site for options.