-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
36 lines (32 loc) · 889 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
site_name: Datafiles
site_description: A file-based ORM for dataclasses.
site_author: Jace Browning
repo_url: https://github.com/jacebrowning/datafiles
edit_uri: https://github.com/jacebrowning/datafiles/edit/main/docs
theme:
name: readthedocs
markdown_extensions:
- codehilite:
noclasses: true
- toc:
toc_depth: 2
nav:
- Overview: index.md
- API:
- Model: api/model.md
- Manager: api/manager.md
- Mapper: api/mapper.md
- Types:
- Builtins: types/builtins.md
- Containers: types/containers.md
- Extended Types: types/extensions.md
- Custom Types: types/custom.md
- Generic Types: types/generics.md
- Extras:
- File Formats: formats.md
- Utilities: utilities.md
- Settings: settings.md
- About:
- Release Notes: about/changelog.md
- Contributor Guide: about/contributing.md
- License: about/license.md