-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
97 lines (93 loc) · 2.24 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
site_name: MSFabricUtils
site_description: A DuckDB connection wrapper for Microsoft Fabric Lakehouses
repo_url: https://github.com/mrjsj/msfabricutils
repo_name: mrjsj/msfabricutils
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
navigation_depth: 3
features:
- navigation.tracking
- navigation.instant
- navigation.expand
- navigation.tabs
- navigation.indexes
- navigation.tabs.sticky
- navigation.footer
- content.tabs.link
- content.code.annotation
- content.code.copy
plugins:
- search:
lang: en
- include_dir_to_nav
- gen-files:
scripts:
- docs/gen_ref_pages.py
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
show_root_toc_entry: true
docstring_style: google
show_source: false
show_root_heading: false
filters: ["!^_", "^__init__$"]
show_object_full_path: false
heading_level: 2
members_order: source
separate_signature: true
show_signature_annotations: true
docstring_section_style: table
show_if_no_docstring: false
nav:
- Home:
- index.md
- Usage:
- usage/installation.md
- usage/cli.md
- usage/etl.md
- usage/fabric-api.md
- API Reference:
- Core:
- core/authentication.md
- Fabric API: core/fabric-api
- ETL:
- etl/index.md
- etl/read.md
- etl/transform.md
- etl/load.md
- Other:
- other/index.md
- other/fabric-duckdb-connection.md
- other/utilities.md
# Formatting options
markdown_extensions:
- admonition
- pymdownx.details
- attr_list
- pymdownx.superfences
- tables
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: ['.','docs/source/src/']
check_paths: true
dedent_subsections: true
- footnotes
- pymdownx.arithmatex:
generic: true