-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
42 lines (38 loc) · 905 Bytes
/
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
site_name: "zotero_utils"
site_author: "Mitchell Tillman"
repo_name: ""
repo_url: "https://github.com/mtillman14/zotero_utils"
site_url: "https://mtillman14.github.io/zotero_utils/"
theme:
name: material
features:
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- toc.follow
- navigation.top
- content.code.copy
plugins:
- search
- awesome-pages
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
show_signature: true
show_docstrings: true
selection:
members: true
docstring_style: "google"
options:
filters:
- "!^__.*__$"
- "!^_"
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- admonition