-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
77 lines (63 loc) · 1.5 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
site_name: Termage::docs
theme:
name: material
custom_dir: docs/overrides
font:
text: Open Sans
features:
- navigation.tabs
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light-green
accent: light-blue
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: lime
accent: blue
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_nav.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [termage]
options:
docstring_style: google
docstring_options:
ignore_init_summary: yes
merge_init_into_class: yes
show_submodules: no
- termage:
# MkDocs Material's theme colors
background: "#21222C"
foreground: "#D5D7E2"
repo_url: https://github.com/bczsalba/termage
repo_name: bczsalba/termage
markdown_extensions:
- admonition
- attr_list
- pymdownx.superfences
- pymdownx.details
- pymdownx.snippets
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
nav:
- Termage:
- Introduction: index.md
- Options: options.md
- In the command line: cli.md
- As an MkDocs plugin: plugin.md
- Reference: reference/