-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
90 lines (78 loc) · 1.92 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
site_name: arguably
site_description: The best Python CLI library, arguably.
strict: true
site_url: https://treykeown.github.io/arguably/
theme:
name: 'material'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: green
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
accent: green
toggle:
icon: material/lightbulb
name: "Switch to light mode"
features:
- content.tabs.link
- content.code.annotate
- announce.dismiss
- navigation.footer
- navigation.expand
logo: images/arguably_small.png
favicon: images/arguably_tiny.png
extra_javascript:
- scripts/jquery.min.js
- scripts/extra.js
extra_css:
- styles/extra.css
repo_name: treykeown/arguably
repo_url: https://github.com/treykeown/arguably
edit_uri: edit/main/docs/
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
separate_signature: true
merge_init_into_class: true
show_object_full_path: true
members_order: source
group_by_category: false
line_length: 80
signature_crossrefs: true
show_root_toc_entry: false
show_source: false
show_bases: true
heading_level: 3
nav:
- Home: index.md
- Why arguably?: why.md
- Examples: examples.md
- Tutorial:
- Introduction: tutorial/intro.md
- Subcommands: tutorial/subcommands.md
- Type Hints: tutorial/type-hints.md
- API Reference: api-reference.md
- Contributing: contributing.md
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.extra