-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
37 lines (31 loc) · 1.06 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
site_name: lesstimate
repo_url: https://github.com/jhorzek/lesstimate
nav:
- Home: 'index.md'
- 'Getting Started':
- 'Installation': '01-installation.md'
- 'Regularizing models': '02-getting-started.md'
- 'Optimizer design': '03-The Optimizer Design.md'
- 'Code Documentation':
- 'Model': '04-Model.md'
- 'lesstimate types': '05-lesstimate_types.md'
- 'penalty types': '06-Penalty type.md'
- 'GLMNET optimizer': '07-GLMNET.md'
- 'ISTA optimizer': '08-ISTA.md'
- 'fitResults class': '09-fitResults.md'
- 'BFGS optimizer': '10-BFGS.md'
theme:
name: material
logo: lesstimate_logo.png
palette:
scheme: slate
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true