-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
45 lines (41 loc) · 1.09 KB
/
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
37
38
39
40
41
42
43
44
45
site_name: Django REST - Typed
theme:
name: "material"
language: en
feature:
tabs: false
features:
- navigation.sections
- toc.integrate
palette:
primary: red
font:
text: Roboto
code: Roboto Mono
repo_name: rsinger86/drf-typed
repo_url: https://github.com/rsinger86/drf-typed
# Extensions
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
nav:
- Introduction: index.md
- Install: install.md
- Views:
- Basic Usage: views/simple_usage.md
- Advanced Usage: views/advanced_usage.md
- Pydantic: views/third_party_schemas.md
- Request Elements: views/request_elements.md
- Supported Types: views/supported_types.md
- Serializers:
- Auto-Generated Fields: serializers/typed_serializers.md
- Typed/Direct Atrribute Access: serializers/attribute_access.md
- IDE Integration: serializers/ide_integration.md
- Type-to-Field Reference: serializers/type_to_field_ref.md