https://github.com/encode/mkdocs.git
MkDocs is a smart, simple, website design tool.
Install the mkdocs command line tool...
$ pip install git+https://github.com/encode/mkdocs.git
This will install the version 2.0 pre-release.
README.md page.mkdocs serve to view your documentation in a browser.mkdocs build to build a static website ready to host.mkdocs.toml file to define the site navigation and other configuration.docs directory, and update the config.mkdocs.toml...
[mkdocs]
nav = [
{path="README.md", title="Introduction"},
{path="CREDITS.md", title="Credits"},
]
[loaders]
theme = "pkg://mkdocs/default"
docs = "dir://docs"
[context]
title = "Documentation"
favicon = "๐"
Use either README.md or index.md for the homepage.
Styling adaptations can be kept simple, such as customising the colour scheme, or more comprehensive, such as creating an entirely new theme.
The MkDocs documentation, served with the Kelp theme.