-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
79 lines (70 loc) · 1.84 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
site_name: Starship
repo_url: https://github.com/astronomer/starship/
edit_uri: edit/main/docs/
site_url: https://astronomer.github.io/starship/
theme:
name: material
logo: starship.svg
favicon: starship.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
- toc.follow
- toc.integrate
- content.tabs.link
- content.action.edit
- content.code.copy
- search.share
- search.highlight
- search.suggest
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
plugins:
- search
- mkdocstrings:
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_bases: false
show_object_full_path: false
show_symbol_type_toc: true
merge_init_into_class: true
parameter_headings: true
summary: true
group_by_category: true
copyright: "Apache Airflow® is a trademark of the Apache Software Foundation"