-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
145 lines (135 loc) · 3.35 KB
/
mkdocs.yaml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# Project information
site_name: ISO Week date
site_url: https://fbruzzesi.github.io/iso-week-date/
site_author: Francesco Bruzzesi
site_description: A toolkit to work with ISO Week date format
# Repository information
repo_name: FBruzzesi/iso-week-date
repo_url: https://github.com/fbruzzesi/iso-week-date
edit_uri: edit/main/docs/
# Configuration
watch:
- iso_week_date
use_directory_urls: true
theme:
name: material
font:
text: Ubuntu
code: Ubuntu Mono
icon:
annotation: material/plus-circle
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: teal
accent: deep-orange
toggle:
icon: material/lightbulb
name: Switch to light mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: teal
accent: deep-orange
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- navigation.footer
- navigation.top
- navigation.tracking
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- content.tabs.link
- search.suggest
- search.highlight
- search.highlight
- search.share
- search.suggest
- toc.follow
logo: img/iso-week-date-logo.svg
favicon: img/iso-week-date-logo.svg
# Plugins
plugins:
- autorefs
- search:
enabled: true
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- mkdocstrings:
handlers:
python:
options:
line_length: 80
separate_signature: true
show_overloads: false
show_signature_annotations: true
signature_crossrefs: true
enable_inventory: true
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fbruzzesi
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/francesco-bruzzesi/
- icon: fontawesome/brands/python
link: https://pypi.org/project/iso-week-date/
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- codehilite
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/extra.js
nav:
- Home:
- Home: index.md
- Installation: installation.md
- Contributing: contribute.md
- User Guide:
- Features: user-guide/features.md
- Quickstart: user-guide/quickstart.md
- Dataframe modules: user-guide/dataframe-modules.md
- Working with Pydantic: user-guide/pydantic.md
- API Reference:
- IsoWeek: api/isoweek.md
- IsoWeekDate: api/isoweekdate.md
- pandas_utils: api/pandas.md
- polars_utils: api/polars.md
- pydantic: api/pydantic.md