-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
83 lines (76 loc) · 2.04 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
# Project information
site_name: fns
site_url: https://amitness.com
site_description: Reusable functions for ML Projects
site_author: Amit Chaudhary
# Repository
repo_url: https://github.com/amitness/fns
repo_name: amitness/fns
edit_uri: "https://github.com/amitness/fns/edit/master/docs/"
# Copyright
copyright: Copyright © 2021 Maintained by <a href="https://amitness.com" target="_blank">Amit Chaudhary</a>.
# Configuration
theme:
name: material
# logo: static/images/logo.png
# favicon: static/images/favicon.ico
palette:
primary: teal
accent: teal
font:
text: Roboto
code: Roboto Mono
features:
- navigation.tabs
- navigation.expand
icon:
repo: fontawesome/brands/github
# Extensions
markdown_extensions:
- meta
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- admonition # alerts
- pymdownx.details # collapsible alerts
- pymdownx.superfences # nest code and content inside alerts
- attr_list # add HTML and CSS to Markdown elements
- pymdownx.inlinehilite # inline code highlights
- pymdownx.keys # show keystroke symbols
- pymdownx.snippets # insert content from other files
- pymdownx.tabbed # content tabs
- footnotes
- def_list
- pymdownx.arithmatex: # mathjax
generic: true
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- codehilite
- pymdownx.highlight:
use_pygments: true
- toc:
toc_depth: 4
# Plugins
plugins:
- search
- macros
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: false
show_source: true
show_category_heading: true
watch:
- ./fns
# Extra JS
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Page tree
nav:
- Home:
- Index: index.md