-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
61 lines (53 loc) · 1.55 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
site_name: Tensora
site_description: Sparse/dense tensor library for Python
site_author: David Hagen
repo_name: drhagen/tensora
repo_url: https://github.com/drhagen/tensora/
edit_uri: ''
copyright: >
© David R Hagen. Content available under an
<a href="https://github.com/drhagen/tensora/blob/master/LICENSE">MIT license</a>.
theme:
name: material
icon:
logo: fontawesome/solid/braille
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: yellow
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: yellow
accent: deep orange
toggle:
icon: material/weather-night
name: Switch to system preference
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/drhagen
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/users/1485877/drhagen
- icon: fontawesome/brands/twitter
link: https://twitter.com/drhagen
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/davidrhagen/
nav:
- Home: index.md
- Getting started: getting-started.md
- Creation: creation.md
- Tensors: tensors.md
- Evaluate: evaluate.md
- Contributing: contributing.md