-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
115 lines (99 loc) · 2.78 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: Orbiter
repo_url: https://github.com/astronomer/orbiter
edit_uri: edit/main/docs/
site_url: https://astronomer.github.io/orbiter/
theme:
name: material
logo: orbiter.svg
favicon: orbiter.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.path
# - navigation.sections #
# - navigation.tabs
# - navigation.tabs.sticky
# - navigation.top
- navigation.instant
- navigation.instant.progress
- navigation.tracking
# - navigation.indexes #
- navigation.expand #
- toc.follow
- toc.integrate #
- content.tabs.link
- content.action.edit
- content.code.copy
- content.code.annotate
- search.share
- search.highlight
- search.suggest
extra_css:
- style.css
markdown_extensions:
# Auto-documents click
- mkdocs-click
- toc:
permalink: true
- pymdownx.superfences:
# Mermaid Diagrams
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
# Snippets provides the -8<-- syntax https://facelessuser.github.io/pymdown-extensions/extensions/snippets/
- pymdownx.snippets
# https://facelessuser.github.io/pymdown-extensions/extensions/magiclink/
- pymdownx.magiclink
- pymdownx.saneheaders
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
- pymdownx.inlinehilite
- admonition
- pymdownx.details
plugins:
- search
- markdown-exec # for rendering the csv table of origins to share w/ CLI
- autorefs
- mkdocstrings:
custom_templates: docs/templates
handlers:
python:
options:
docstring_style: sphinx
show_source: true
show_root_heading: true
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
unwrap_annotated: true
show_object_full_path: false
show_symbol_type_toc: true
merge_init_into_class: true
parameter_headings: true
summary: true
group_by_category: true
trim_doctest_flags: true
docstring_options:
trim_doctest_flags: true
show_bases: false
extensions:
- griffe_inherited_docstrings
copyright: "Apache Airflow® is a trademark of the Apache Software Foundation. Copyright 2024 Astronomer, Inc."