-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
52 lines (48 loc) · 1.06 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
site_name: pycrdt
site_description: CRDTs based on Yrs
repo_url: https://github.com/jupyter-server/pycrdt
theme:
name: 'material'
palette:
- scheme: default
primary: 'black'
accent: 'black'
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: 'black'
accent: 'black'
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- navigation.instant
- navigation.top
- navigation.sections
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
logo: assets/logo.png
nav:
- Overview: index.md
- install.md
- usage.md
- api_reference.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
docstring_style: google
find_stubs_package: true
docstring_options:
ignore_init_summary: false