forked from delta-io/delta-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
91 lines (86 loc) · 2.37 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
site_name: Delta Lake Documentation
site_url: https://github.com/delta-io/delta-rs
repo_url: https://github.com/delta-io/delta-rs
repo_name: delta-io/delta-rs
theme:
name: material
locale: en
navigation_depth: 3
features:
- navigation.tracking
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.footer
- content.tabs.link
nav:
- Home: index.md
- Installation: installation.md
- Usage:
- Overview: usage/index.md
- Loading a Delta Table: usage/loading-table.md
- Examining a Delta Table: usage/examining-table.md
- Querying a Delta Table: usage/querying-delta-tables.md
- Managing a Delta Table: usage/managing-tables.md
- Writing Delta Tables: usage/writing-delta-tables.md
- API Reference:
- api/delta_table.md
- api/schema.md
- api/storage.md
not_in_nav: |
/_build/
exclude_docs: |
/_build/
/mlc_config.json
/src
/requirements.txt
*.py
plugins:
- autorefs
- mkdocstrings:
handlers:
python:
path: [../python]
options:
show_root_toc_entry: false
docstring_section_style: table
filters: ["!^_", "^__init__$"]
heading_level: 3
show_source: false
show_symbol_type_in_heading: true
show_signature_annotations: true
show_root_heading: false
show_root_full_path: true
separate_signature: true
docstring_options:
ignore_init_summary: false
merge_init_into_class: true
import:
# for cross references
- https://arrow.apache.org/docs/objects.inv
- https://pandas.pydata.org/docs/objects.inv
- search:
lang: en
- markdown-exec
- macros:
module_name: docs/_build/macro
- mkdocs-simple-hooks:
hooks:
on_page_markdown: 'docs._build.hooks:on_page_markdown'
markdown_extensions:
- admonition
- pymdownx.details
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
base_path: ['.','docs/src/']
check_paths: true
dedent_subsections: true
- footnotes
extra:
python_api_url: https://delta-io.github.io/delta-rs/api/