-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
101 lines (89 loc) · 2.31 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com>
# Project information
site_name: Vizzu-Examples
site_url: https://github.com/fralfaro/Vizzu-Examples
site_author: Francisco Alfaro
site_description:
# Repository
repo_name: fralfaro/Vizzu-Examples
repo_url: https://github.com/fralfaro/Vizzu-Examples
edit_uri: ''
# Markdown extensions
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tabbed
# Extra javascript
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Theme
theme:
name: material
language: es
logo: images/vizzu.svg
favicon: images/vizzu.png
features:
- navigation.instant
- navigation.top
- content.code.annotate
- search.suggest
- search.highlight
palette:
# Light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: black
accent: light blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
accent: light blue
toggle:
icon: material/toggle-switch
name: Switch to light mode
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fralfaro
- icon: fontawesome/brands/gitlab
link: https://gitlab.com/fralfaro
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/faam/
- icon: fontawesome/brands/kaggle
link: https://www.kaggle.com/faamds
- icon: fontawesome/brands/medium
link: https://medium.com/@fralfaro
- icon: fontawesome/solid/globe
link: https://fralfaro.github.io/portfolio/
# Plugins
plugins:
- mkdocs-jupyter:
kernel_name: python3
- search
# TOC
nav:
- index.md
- installation.md
- Ejemplos:
- examples/basic.ipynb
- examples/music.ipynb
- examples/musicformats.ipynb
- examples/nadal.ipynb
- examples/sales.ipynb
- examples/titanic.ipynb