forked from Sibyx/django_api_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
37 lines (33 loc) · 786 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
37
# Project information
site_name: 'Django API Forms'
site_description: 'Declarative Django request validation for APIs'
site_author: 'Jakub Dubec'
site_url: 'https://sibyx.github.io/django_api_forms'
# Navigation
nav:
- Home: index.md
- Installation: install.md
- Tutorial: tutorial.md
- Fields: fields.md
- Example: example.md
# Repository
repo_name: 'Sibyx/django_api_forms'
repo_url: 'https://github.com/Sibyx/django_api_forms'
# Configuration
theme:
name: 'material'
custom_dir: docs/custom/
language: 'en'
features:
- instant
# Extensions
markdown_extensions:
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences