-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
119 lines (103 loc) · 2.79 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com>
# Project information
site_name: DS CheatSheets
site_url: https://github.com/fralfaro/DS-Cheat-Sheets
site_author: Francisco Alfaro
site_description:
# Repository
repo_name: fralfaro/DS-Cheat-Sheets
repo_url: https://github.com/fralfaro/DS-Cheat-Sheets
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
- neoteroi.cards
- neoteroi.timeline
- neoteroi.projects
extra_css:
- css/neoteroi-mkdocs.css
# 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: en
logo: images/rpython.svg
favicon: images/icon.png
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
- navigation.footer
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:
- 🏠 Home: index.md
- 📗 Python:
- Python: examples/python/python.ipynb
- Numpy: examples/numpy/numpy.ipynb
- Pandas: examples/pandas/pandas.ipynb
- Matplotlib: examples/matplotlib/matplotlib.ipynb
- Scikit-Learn: examples/scikit-learn/sklearn.ipynb
- Polars: examples/polars/polars.ipynb
- 📘 R:
- Dplyr: examples/dplyr/dplyr.ipynb
- Ggplot2: examples/ggplot2/ggplot2.ipynb
- Forcats: examples/forcats/forcats.ipyn