-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
69 lines (64 loc) · 2.75 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
# Some config options here are taken from the docs for Equinox.
# See: https://github.com/patrick-kidger/equinox/blob/main/mkdocs.yml
# for an example of a project with lovely docs =)
site_name: SmartMultiprocessing
site_url: https://smartmultiprocessing.org
site_author: Emily Hunt
site_description: >-
A drop-in replacement for Python's `multiprocessing` library with many extra features,
including: memory management, smart task scheduling, a pause button, a GUI, and more.
repo_url: https://github.com/emilyhunt/smartmultiprocessing
repo_name: smartmultiprocessing
theme:
name: material
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
- search.suggest # Suggested search
- search.highlight
- search.share
palette:
# Light mode / dark mode
# We deliberately don't automatically use `media` to check a user's preferences. We default to light mode as
# (a) it looks more professional, and (b) is more obvious about the fact that it offers a (dark mode) toggle.
- scheme: default
primary: indigo
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github # GitHub logo in top right
logo: "material/lightbulb-outline"
favicon: "_static/favicon.png"
markdown_extensions:
- pymdownx.arithmatex: # Render LaTeX via MathJax
generic: true
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.snippets: # Include one Markdown file into another
base_path: docs
- admonition
- toc:
permalink: "¤" # Adds a clickable permalink to each section heading
toc_depth: 4
plugins:
- search # default search plugin; needs manually re-enabling when using any other plugins
- autorefs # Cross-links to headings
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy # Render docs as numpy style
show_source: false
show_object_members_full_path: true
members_order: source
# inherited_members: true # Allow looking up inherited methods
# - privacy # Not installed error???