-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
62 lines (58 loc) · 1.78 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
site_name: QSPARSE - Joint Quantization & Pruning in PyTorch
site_url: "https://qsparse.readthedocs.io/en/latest/"
repo_url: "https://github.com/mlzxy/qsparse"
edit_uri: edit/main/docs/
repo_name: Github
nav:
- Home: "README.md"
- Tutorial: "tutorial.ipynb"
- Advanced Usage: "advanced_usage.ipynb"
- API Reference:
- sparse: "reference/sparse.md"
- quantize: "reference/quantize.md"
- convert: "reference/convert.md"
- fuse: "reference/fuse.md"
- imitation: "reference/imitation.md"
- common: "reference/common.md"
- util: "reference/util.md"
theme:
name: "material"
custom_dir: docs/overrides
plugins:
- search
- mkdocs-jupyter:
execute: True
include_source: True
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- qsparse
extra:
search:
language: "en"
markdown_extensions:
- admonition # notes make pretty
- footnotes
- meta # page-specific context
- toc:
permalink: true # inserts an anchor
- sane_lists # better ul and ol
- pymdownx.betterem: # better italic and bold
smart_enable: asterisk
- pymdownx.caret # insert text and superscript
- pymdownx.details # details and summary; work with admonition
- pymdownx.highlight: # better code, instead of CodeHilite <--------
linenums: true
- pymdownx.inlinehilite # like codehilite but inline
- pymdownx.magiclink # auto links
- pymdownx.mark # highlight text
- pymdownx.smartsymbols # special symbols
- pymdownx.superfences: # nest code blocks under other blocks <-------
- pymdownx.tasklist: # better tasks lists
custom_checkbox: true
- pymdownx.tabbed # auto tabs
- pymdownx.tilde # strike through cross out text