This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (84 loc) · 2.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
site_name: Flexible Lists of Values (LOV) for Django
site_url: https://github.com/jacklinke/flexible-list-of-values
site_description: Docs for flexible-list-of-values
site_footer:
site_author: Jack Linke
copyright: Copyright © 2022 Jack All Rights Reserved.
repo_name: flexible-list-of-values
repo_url: https://github.com/jacklinke/flexible-list-of-values
dev_addr: 127.0.0.1:8070
theme:
logo: assets/logo.svg
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
font:
text: Helvetica
name: material
custom_dir: docs/overrides
static_templates:
- 404.html
features:
- content.code.annotate
- navigation.indexes
- navigation.tabs
- navigation.tracking
- search.highlight
- search.share
- search.suggest
palette:
- media: "(prefers-color-scheme: light)" #
scheme: light
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)" #
scheme: dark
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.extra
- meta
plugins:
- autorefs
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: true
# show_object_full_path: true
# show_category_heading: true
show_if_no_docstring: true
setup_commands:
- import os
- import sys
- import django
- sys.path.insert(0, os.path.abspath("flexible_list_of_values/"))
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tests.settings")
- django.setup()
watch:
- .
enable_inventory: true
- mike:
canonical_version: "2.7"
nav:
- Documentation:
- Usage:
- Installation: usage/installation.md
- Getting Started: usage/getting_started.md
- Contributing: contributing.md
- Reference: reference/