-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
56 lines (56 loc) · 1.33 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
site_name: SQLFrame
repo_url: https://github.com/eakmanrq/sqlframe
repo_name: eakmanrq/sqlframe
nav:
- "Overview": index.md
- "BigQuery": bigquery.md
- "DuckDB": duckdb.md
- "Postgres": postgres.md
- "Spark": spark.md
- "Standalone": standalone.md
- "Configuration": configuration.md
- "Redshift (In-Development)": redshift.md
- "Databricks (In-Development)": databricks.md
theme:
name: material
logo: images/SF.png
favicon: images/SF.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: #091c79
accent: #cce8fe
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: #cce8fe
accent: #091c79
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.tabs.link
- navigation.tracking
- navigation.tabs
- navigation.sections
- toc.integrate
- toc.follow
plugins:
- include-markdown
- search
markdown_extensions:
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
extra_css:
- stylesheets/extra.css