-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
48 lines (48 loc) · 981 Bytes
/
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
site_name: Head Hunter Documentation
repo_url: https://github.com/OpenBagTwo/head-hunter
repo_name: head-hunter
site_author: Gili "OpenBagTwo" Barlev
docs_dir: docs
edit_uri: ''
theme:
name: windmill
favicon: img/favicon.png
logo: img/logo.png
extra:
logo: img/logo.png
nav:
- Home: index.md
- Tutorial: Tutorial.ipynb
- Terms of Use: terms.md
- API Docs: reference/
plugins:
- search
- autorefs
- mkdocs-jupyter:
ignore_h1_titles: true
ignore: [.ipynb_checkpoints, '*.py']
- gen-files:
scripts:
- docs/gen_apidocs.py
- section-index
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
enable_inventory: true
watch:
- head_hunter
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- sane_lists