forked from datajoint/datajoint-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
134 lines (131 loc) · 3.85 KB
/
mkdocs.yaml
File metadata and controls
134 lines (131 loc) · 3.85 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# ---------------------- PROJECT SPECIFIC ---------------------------
site_name: DataJoint Python
repo_url: https://github.com/datajoint/datajoint-python
repo_name: datajoint/datajoint-python
nav:
- DataJoint Python: getting-started/index.md
- Getting Started: getting-started/index.md
- Existing Pipelines: concepts/existing-pipelines.md
- Query Language:
- Common Commands: query-lang/common-commands.md
- Operators: query-lang/operators.md
- Iteration: query-lang/iteration.md
- Query Caching: query-lang/query-caching.md
- Reproducibility:
- Table Tiers: reproduce/table-tiers.md
- Make Method: reproduce/make-method.md
- Tutorials:
- tutorials/json.ipynb
- Develop: develop.md
- Changelog: about/changelog.md
- API: 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 # Add codeblock annotations
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
- redirects:
redirect_maps:
"index.md": "getting-started/index.md"
- mkdocstrings:
default_handler: python
handlers:
python:
options:
filters:
- "!^_"
docstring_style: sphinx # Replaces google default pending docstring updates
members_order: source
group_by_category: false
line_length: 88
- gen-files:
scripts:
- ./src/api/make_pages.py
- literate-nav:
nav_file: navigation.md
- exclude-search:
exclude:
- "*/navigation.md"
- "*/archive/*md"
- mkdocs-jupyter:
include: ["*.ipynb"]
markdown_extensions:
- attr_list
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.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
extra:
generator: false # Disable watermark
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
version:
provider: mike
social:
- icon: main/company-logo
link: https://www.datajoint.com
name: DataJoint
- icon: fontawesome/brands/slack
link: https://datajoint.slack.com
name: Slack
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/datajoint
name: LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/datajoint
name: Twitter
- icon: fontawesome/brands/github
link: https://github.com/datajoint
name: GitHub
- icon: fontawesome/brands/docker
link: https://hub.docker.com/u/datajoint
name: DockerHub
- icon: fontawesome/brands/python
link: https://pypi.org/user/datajointbot
name: PyPI
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/questions/tagged/datajoint
name: StackOverflow
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/channel/UCdeCuFOTCXlVMRzh6Wk-lGg
name: YouTube
extra_css:
- assets/stylesheets/extra.css