-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
56 lines (51 loc) · 1.35 KB
/
mkdocs.yml
File metadata and controls
56 lines (51 loc) · 1.35 KB
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: "gpuma Documentation"
site_description: "Documentation for the gpuma package."
site_author: "Niklas Hölter"
site_url: "https://NiklasHoelter.github.io/gpuma/"
repo_url: https://github.com/NiklasHoelter/gpuma
repo_name: NiklasHoelter/gpuma
edit_uri: edit/main/docs/ # Allows users to suggest edits directly via GitHub
theme:
name: "material"
logo: "logo_round.png"
favicon: "logo_round.png"
features:
- navigation.expand
- content.code.copy
palette:
# Light mode
- scheme: default
primary: teal
accent: purple
nav:
- Home: index.md
- Installation: install.md
- Configuration: config.md
- Command Line Interface: cli.md
- Python API: reference.md
- License: LICENSE.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
selection:
docstring_style: google
rendering:
show_source: true
show_root_heading: true
extra:
python_path: .
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences # Allows nesting code blocks inside other blocks
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets # Allows you to embed code from external files