-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
42 lines (42 loc) · 979 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
site_name: mercury-dataschema
repo_url: https://github.com/BBVA/mercury-dataschema/
repo_name: mercury-dataschema
theme:
name: material
features:
- tabs
- navigation.indexes
icon:
logo: material/book-open-page-variant
repo: fontawesome/brands/github
site_dir: site
nav:
- Home: index.md
#- Contributing:
# - How to contribute: CONTRIBUTING.md
- Api:
- dataschema: reference/dataschema.md
markdown_extensions:
- codehilite
- admonition
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_submodules: true
merge_init_into_class: true
docstring_style: google
watch:
- mercury/dataschema
dev_addr: 0.0.0.0:8080