-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
52 lines (43 loc) · 1.18 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
site_name: Workshop data sciences
copyright: "Copyright © 2017 DAPLAB & UNIFR"
site_author: "Lucy Linder (DAPLAB)"
# ----------------------
pages:
- index.md
# day 1
- HDFS: hdfs.md
- MapReduce: mapreduce.md
- Hive: hive.md
# day 2
- Zeppelin/Spark SQL: zeppelin.md
- LSA with Spark ML: spark.md
# ----------------------
theme: 'material' # see https://squidfunk.github.io/mkdocs-material for the documentation
markdown_extensions:
- footnotes
- attr_list
- admonition
- codehilite #(linenums=true)
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
# - pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
# - mdx_math
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra_css:
- style.css
extra:
palette:
primary: 'blue'
accent: 'orange'