-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
103 lines (96 loc) · 2.46 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
93
94
95
96
97
98
99
100
101
102
103
site_name: ''
site_description: EllarSQL, designed for Ellar, enhances your application by integrating support for SQLAlchemy and Alembic.
site_url: https://github.com/python-ellar/ellar-sql
repo_name: python-ellar/ellar-sql
repo_url: https://github.com/python-ellar/ellar-sql
edit_uri: blob/master/docs
copyright: |
Copyright © 2024 <a href="https://github.com/eadwinCode" target="_blank" rel="noopener">Eadwin Ezeudoh</a>
docs_dir: docs
site_dir: site
theme:
name: material
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.prune
# - navigation.tabs
- navigation.left
- navigation.tracking
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: cyan
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: cyan
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
font:
text: Source Sans Pro
code: Fira Code
language: en
logo: img/ellar_sql.png
favicon: img/ellar_sql.png
icon:
repo: fontawesome/brands/git-alt
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- git-revision-date-localized:
enable_creation_date: false
nav:
- Index: index.md
- Get Started: overview/index.md
- Configuration: overview/configuration.md
- Models:
- index: models/index.md
- Extra Fields: models/extra-fields.md
- File and Image Fields: models/file-fields.md
- Pagination: pagination/index.md
- Multiple Database: multiple/index.md
- Migrations:
- index: migrations/index.md
- customizing env: migrations/env.md
- Testing: testing/index.md
markdown_extensions:
- attr_list
- toc:
permalink: true
- admonition
- def_list
- tables
- abbr
- footnotes
- md_in_html
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.saneheaders
- pymdownx.tilde
extra_css:
- stylesheets/extra.css