-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
56 lines (51 loc) · 1.29 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
site_name: Papermill Origami
site_description: A Python Library for using Noteable from papermill.
#site_url: https://???
theme:
name: 'material'
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
features:
- navigation.sections
repo_name: noteable-io/papermill-origami
repo_url: https://github.com/noteable-io/papermill-origami/
edit_uri: ""
nav:
- Introduction: 'index.md'
- Contributing: 'contributing.md'
- Usage:
- QuickStart: 'quickstart.md'
- Code Reference: reference/
- Changes:
- Log: 'changelog.md'
markdown_extensions:
- pymdownx.highlight
- pymdownx.snippets
- toc:
permalink: "#"
plugins:
- search
- gen-files:
scripts:
- docs/gen_doc_stubs.py
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [papermill_origami]
rendering:
show_source: true
watch: [papermill_origami, README.md, CONTRIBUTING.md, CHANGELOG.md]
- literate-nav:
nav_file: SUMMARY.md
- section-index