-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
60 lines (55 loc) · 1.49 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
site_name: 'Nexus 0.1.0'
site_description: 'Typesafe deep learning in Scala'
site_author: 'Tongfei Chen'
copyright: 'Copyright © 2017-2018 Tongfei Chen'
theme:
name: 'material'
palette:
primary: 'blue-800'
accent: 'light blue'
font:
text: 'Source Sans Pro'
code: 'Source Code Pro'
logo: 'images/nexus-logo.svg'
markdown_extensions:
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# - mdx_math
#- markdown_fenced_code_tabs:
# single_block_as_tab: False
# active_class: 'active'
# template: 'default'
repo_name: 'ctongfei/nexus'
repo_url: 'https://github.com/ctongfei/nexus'
extra_javascript:
- 'js/mathjax-settings.js'
- 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML'
extra_css: ['css/extra.css']
nav:
- 'Introduction': 'index.md'
- 'Basic math':
- 'Scalar operations': 'scalar-ops.md'
- 'Tensors':
- 'Typesafe tensors': 'tensor.md'
- 'Tensor slicing': 'slice.md'
- 'Deep learning':
- 'Symbolic expressions': 'expr.md'
- 'Tensor operations': 'tensor-ops.md'
- 'Tutorial': []
- 'Computation backends':
- 'Torch':
- 'Torch': 'torch.md'
- 'Torch CUDA support': 'torch-cuda.md'
- 'Code style': 'code-style.md'