-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
85 lines (79 loc) · 1.81 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
site_name: tinytopics
site_url: https://nanx.me/tinytopics/
repo_url: https://github.com/nanxstats/tinytopics
repo_name: nanxstats/tinytopics
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Articles:
- articles/get-started.md
- articles/benchmark.md
- articles/text.md
- API Reference:
- Fit: reference/fit.md
- Models: reference/models.md
- Plot: reference/plot.md
- Colors: reference/colors.md
- Utilities: reference/utils.md
- Changelog: changelog.md
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: false
- toc:
permalink: true
theme:
name: material
font:
text: Lato
code: JetBrains Mono
logo: assets/logo.png
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.expand
- navigation.top
- navigation.path
- search.highlight
- search.suggest
- toc.follow