-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
121 lines (112 loc) · 3.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# https://www.mkdocs.org/user-guide/configuration/
# Project information
site_name: hpc-multibench
site_author: Edmund Goodman
copyright: Copyright © Edmund Goodman
# Repository
repo_name: EdmundGoodman/hpc-multibench
repo_url: https://github.com/EdmundGoodman/hpc-multibench
# Configuration
use_directory_urls: false
nav:
- Home: index.md
- Quick start: quickstart.md
- Manual: manual.md
- YAML schema: yaml_schema.md
- Reference:
- Main: reference/main.md
- YAML model: reference/yaml_model.md
- Test bench: reference/test_bench.md
- Run configuration: reference/run_configuration.md
- Plotting submodule: reference/plot.md
- TUI submodule: reference/tui.md
- Roofline model: reference/roofline_model.md
- Gallery: gallery.md
- Contributing: contributing.md
theme:
name: material
locale: en_GB
features:
- announce.dismiss
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
# - navigation.tracking
- search.highlight
- search.suggest
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
# Inbuilt extensions
# https://python-markdown.github.io/extensions/
- admonition
- attr_list
- footnotes
- md_in_html
- meta
- sane_lists
- smarty
- tables
- toc:
permalink: true
# Third party extensions
# https://facelessuser.github.io/pymdown-extensions/
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
linenums: true
anchor_linenums: true
- pymdownx.keys
- pymdownx.saneheaders
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
# - minify:
# minify_html: true
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
members_order: source
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
filters:
- "!UFloat" # Ignore strange type wrapper causing warnings
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/EdmundGoodman
name: Python Template on Github
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js