-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
84 lines (74 loc) · 1.83 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
# mkdocs.yml
site_name: "ts_diffusion"
site_author: ""
site_description: "Diffusion Models for Time Series Forecasting"
site_url: "https://neuronstar.github.io/ts-diffusion"
repo_url: "https://github.com/neuronstar/ts-diffusion"
edit_uri: "blob/main/docs/"
repo_name: "neuronstar/ts-diffusion"
theme:
name: "material"
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
features:
# - navigation.instant
- navigation.sections
- navigation.tabs
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/logo.png
logo: assets/logo.png
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.arithmatex:
generic: true
- toc:
permalink: "¤"
plugins:
- autorefs
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: sphinx
watch:
- docs
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- "Home": index.md
- "Tutorials":
- "Introduction": tutorials/index.md
- "Datasets": tutorials/datasets.md
- References:
- "Introduction": references/index.md
- "DataModules": references/datamodules.md
- "Changelog": changelog.md