forked from truera/trulens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
84 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
84
site_name: TruLens
markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/reference/mathjax/
- pymdownx.arithmatex:
generic: true
- admonition
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: false
show_source: true
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
- "^__call__$" # and __call__ methods
watch:
- trulens
- search
theme:
name: material
custom_dir: docs/overrides/
palette:
scheme: trulens
#font:
# text: Source Sans Pro
favicon: img/favicon.ico
logo: img/squid.png
nav:
- Home: index.md
- Welcome to TruLens!: welcome.md
- Installation: install.md
- Quickstart: quickstart.md
- API Reference:
- Attribution: api/attribution.md
- Models: api/model_wrappers.md
- Slices: api/slices.md
- Quantities: api/quantities.md
- Distributions: api/distributions.md
- Visualizations: api/visualizations.md
extra_css:
- stylesheets/extra.css
- stylesheets/cover.css
# https://squidfunk.github.io/mkdocs-material/reference/mathjax/
# Polyfill provides backcompat for JS. We need to import it before
# importing MathJax.
extra_javascript:
- javascript/config.js
- javascript/app.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- javascript/tex-mml-chtml-3.0.0.js
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML