-
Notifications
You must be signed in to change notification settings - Fork 19
/
mkdocs.yml
58 lines (58 loc) · 1.57 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
site_name: pytorch-optimizer
site_description: 'optimizer & lr scheduler & loss function collections in PyTorch'
repo_name: 'kozistr/pytorch-optimizer'
repo_url: 'https://github.com/kozistr/pytorch_optimizer'
nav:
- index.md
- base.md
- optimizer.md
- lr_scheduler.md
- loss.md
- util.md
- visualization.md
- ... | changelogs/*.md
- qa.md
theme:
name: material
highlightjs: true
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- javascripts/tables.js
plugins:
- search
- awesome-pages
- mkdocstrings:
handlers:
python:
options:
# https://mkdocstrings.github.io/python/usage/configuration/general/
show_root_heading: true
show_root_full_path: false
show_root_members_full_path: false
# show_symbol_type_toc: true
allow_inspection: true
show_bases: true
show_source: true
docstring_style: sphinx
markdown_extensions:
- admonition
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- mdx_truly_sane_lists
- markdown_include.include:
base_path: .