-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
104 lines (101 loc) · 2.74 KB
/
mkdocs.yaml
File metadata and controls
104 lines (101 loc) · 2.74 KB
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
104
# ---------------------- PROJECT SPECIFIC ---------------------------
site_name: DataJoint Python - Developer Documentation
site_description: Developer documentation for DataJoint Python contributors
repo_url: https://github.com/datajoint/datajoint-python
repo_name: datajoint/datajoint-python
nav:
- Home: index.md
- Contributing: develop.md
- How-To Guides:
- Deferred Schema Activation: how-to/deferred-schema-activation.md
- Architecture:
- architecture/index.md
- SQL Transpilation: architecture/transpilation.md
- API Reference: api/ # defer to gen-files + literate-nav
# ---------------------------- STANDARD -----------------------------
edit_uri: ./edit/master/docs/src
docs_dir: ./src
theme:
font:
text: Roboto Slab
code: Source Code Pro
name: material
custom_dir: src/.overrides
icon:
logo: main/company-logo
favicon: assets/images/company-logo-blue.png
features:
- toc.integrate
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: datajoint
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths:
- "../src"
options:
docstring_style: numpy
members_order: source
group_by_category: false
line_length: 88
show_source: false
- gen-files:
scripts:
- ./src/api/make_pages.py
- literate-nav:
nav_file: navigation.md
- section-index
markdown_extensions:
- attr_list
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- .overrides/.icons
- mdx_truly_sane_lists
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.magiclink
- pymdownx.tasklist:
custom_checkbox: true
- md_in_html
extra:
generator: false
version:
provider: mike
social:
- icon: main/company-logo
link: https://www.datajoint.com
name: DataJoint
- icon: fontawesome/brands/github
link: https://github.com/datajoint
name: GitHub
- icon: fontawesome/brands/slack
link: https://datajoint.slack.com
name: Slack
extra_css:
- assets/stylesheets/extra.css