-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
75 lines (69 loc) · 1.72 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
site_name: cython-extensions
theme:
name: material
favicon: assets/favicon.ico
palette:
- scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
default_palette_scheme: slate
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
- navigation.indexes
icon:
repo: fontawesome/brands/github-alt
language: en
nav:
- Cython Extensions SC2: index.md
repo_name: cython-extensions-sc2
repo_url: https://github.com/AresSC2/cython-extensions-sc2
# to navigate with `/site` content correctly
use_directory_urls: false
plugins:
- search
- mkdocstrings:
watch: [cython_extensions]
handlers:
python:
paths: [cython_extensions]
selection:
docstring_style: numpy
rendering:
show_root_heading: false
show_root_full_path: false
heading_level: 2
merge_init_into_class: true
show_signature_annotations: false
separate_signature: true
show_root_toc_entry: false
markdown_extensions:
- toc:
baselevel: 1
permalink: true
toc_depth: 3
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra_css:
- stylesheets/extra.css