-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
40 lines (36 loc) · 927 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: PySpark Data Sources
site_url: https://allisonwang-db.github.io/pyspark-data-sources
repo_url: https://github.com/allisonwang-db/pyspark-data-sources
theme:
name: material
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: numpy
- search
nav:
- Index: index.md
- Data Sources:
- datasources/github.md
- datasources/fake.md
- datasources/huggingface.md
- datasources/stock.md
- datasources/simplejson.md
- datasources/googlesheets.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list