-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
81 lines (72 loc) · 1.74 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
site_name: mercury-graph
repo_url: https://github.com/BBVA/mercury-graph/
repo_name: mercury-graph
theme:
name: material
features:
- tabs
- navigation.indexes
- navigation.path
- navigation.expand
- search.suggest
- search.highlight
- search.share
- content.footnote.tooltips
icon:
logo: material/book-open-page-variant
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Home: index.md
- API:
- mercury.graph.core: reference/core.md
- mercury.graph.ml: reference/ml.md
- mercury.graph.embeddings: reference/embeddings.md
- mercury.graph.viz: reference/viz.md
docs_dir: docs
site_dir: site
extra:
social:
- icon: fontawesome/brands/linkedin
link: https://es.linkedin.com/showcase/bbva-ai-factory/
- icon: fontawesome/brands/x-twitter
link: https://x.com/bbva_aifactory
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
markdown_extensions:
- codehilite
- admonition
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- footnotes
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_submodules: true
merge_init_into_class: true
docstring_style: google
watch:
- mercury/graph
dev_addr: 0.0.0.0:8080