-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
72 lines (66 loc) · 1.48 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
---
site_name: calcipy
site_author: Kyle King
site_description: calcipy project documentation
site_url: https://calcipy.kyleking.me
repo_name: kyleking/calcipy
repo_url: https://github.com/kyleking/calcipy
edit_uri: edit/main/docs
docs_dir: docs
site_dir: releases/site
theme:
name: material
palette:
- scheme: default
accent: green
icon:
repo: fontawesome/brands/github
features:
- toc.autohide
watch:
- calcipy
plugins:
- gen-files:
scripts:
- docs/gen_ref_nav.py
- mkdocstrings:
handlers:
python:
options:
docstring_section_style: spacy
line_length: 120
separate_signature: true
show_category_heading: true
- search
markdown_extensions:
- abbr
- admonition
- attr_list
- codehilite:
linenums: true
- def_list
- extra
- fenced_code
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.details
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- smarty
- tables
- toc:
permalink: ⚓︎
toc_depth: 5
extra_css:
- _styles/mkdocstrings.css
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- _javascript/tables.js