Update Documentation
Understanding Project Structure
documentation-default/
├── docs/
│ ├── index.md
│ └── assets/
│ └── images/
├── mkdocs.yml
├── requirements.txt
└── README.md
The docs/
folder contains all Markdown source files from each page of the documentation. The mkdocs.yml
file contains the configuration for the documentation name, theme, navigation and plugings.
Editing Documentation
All documentation is written in Markdown (.md
). For example, index.md
might look like:
Always use Markdown syntax to add headings, links, images, tables, and more.
Adding Pages and Navigation
In mkdocs.yml
, define the order of the documentation structure:
mkdocs.yml | |
---|---|
Further Reading
To learn more about specific plugins and Markdown syntax, check out the the mkdocs documentation.