-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
64 lines (59 loc) · 1.39 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
site_name: Origami
site_description: A Python SDK for Noteable API interactions.
#site_url: https://???
theme:
name: "material"
logo: papersnake-dark.svg
palette:
- scheme: "default"
media: "(prefers-color-scheme: light)"
primary: "cyan"
accent: "cyan"
toggle:
icon: "material/lightbulb"
name: "Switch to dark mode"
- scheme: "slate"
media: "(prefers-color-scheme: dark)"
primary: "cyan"
accent: "cyan"
toggle:
icon: "material/lightbulb-outline"
name: "Switch to light mode"
features:
- navigation.sections
- content.code.copy
repo_name: noteable-io/origami
repo_url: https://github.com/noteable-io/origami/
edit_uri: ""
nav:
- Introduction: "index.md"
- Contributing: "contributing.md"
- "Quick Start": "quickstart.md"
- "Use Cases": "usage.md"
- Code Reference: reference/
- Changes:
- Log: "changelog.md"
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: "#"
plugins:
- search
- gen-files:
scripts:
- docs/gen_doc_stubs.py
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [origami]
rendering:
show_source: true
- literate-nav:
nav_file: SUMMARY.md
- section-index