-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
232 lines (209 loc) · 5.8 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Project information
site_name: DB2 IXF PARSER
#site_url:
repo_url: https://github.com/ismailhammounou/db2ixf
edit_uri: blob/main/docs/
repo_name: db2ixf
site_description: Documentation of db2ixf python package
site_author: Ismail Hammounou
copyright: Copyright © 2023 Ismail Hammounou - <a href="#__consent">Change cookie settings</a>
remote_branch: gh-pages
remote_name: origin
# Documentation layout
nav:
- Home:
- Welcome: markdown/welcome.md
- Introduction: markdown/introduction.md
- Getting Started: markdown/getting-started.md
- Code Reference:
- IXF: markdown/code/db2ixf.md
- Collectors: markdown/code/collectors.md
- Helpers: markdown/code/helpers.md
- Encoders: markdown/code/encoders.md
- Exceptions: markdown/code/exceptions.md
- Constants: markdown/code/constants.md
# Build directories
docs_dir: docs
site_dir: site
theme:
name: material
# custom_dir: docs/overrides
language: en
logo: assets/images/db2ixf-logo.png
favicon: assets/images/db2ixf-logo.png
font:
text: Comic Sans Ms
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: me
accent: red
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: yellow
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
icon:
edit: material/pencil
view: material/eye
navigation_depth: 2
features:
- header.autohide
- navigation.top
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- search.suggest
- search.highlight
- search.share
- announce.dismiss
- toc.integrate
- toc.follow
- content.code.copy
- content.code.annotate
- content.action.edit
- content.action.view
- content.tabs.link
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- assets/javascripts/tablesort.js
- assets/javascripts/mathjax.js
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
analytics:
name: Google Analytics
checked: false
github:
name: Github Analytics
checked: false
actions:
- accept
- reject
- manage
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/IsmailHam777
name: Author on Twitter
- icon: fontawesome/solid/paper-plane
link: mailto:ismail.hammounou@gmail.com
name: Contact us
- icon: fontawesome/brands/github
link: https://github.com/ismailhammounou
name: Author on Github
generator: true
manifest: manifest.webmanifest
# Preview controls
# Live Reloading
watch:
- src
use_directory_urls: true
strict: false
dev_addr: 127.0.0.1:8000
# Formatting options
## Plugins
plugins:
- git-revision-date-localized:
enabled: !ENV [ CI, true ]
type: date
enable_creation_date: true
fallback_to_build_date: true
- search:
lang: [ 'en', 'fr', 'es', 'de', 'ar' ]
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- mkdocstrings:
enabled: !ENV [ ENABLE_MKDOCSTRINGS, true ]
default_handler: python
handlers:
python:
options:
heading_level: 1
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: false
show_root_members_full_path: false
show_object_full_path: false
show_category_heading: true
members_order: source
group_by_category: true
show_submodules: false
docstring_style: numpy
docstring_section_style: table # list, spacy, table
line_length: 100
merge_init_into_class: true
show_if_no_docstring: false
annotations_path: source # source, brief
show_signature: true
show_signature_annotations: false
separate_signature: false
show_bases: false
show_source: true
- autorefs
- glightbox
## Markdown extensions
markdown_extensions:
- abbr
- smarty
- meta
- attr_list
- def_list
- md_in_html
- admonition
- tables
- footnotes
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.details
- pymdownx.inlinehilite
- toc:
permalink: ⚓︎
permalink_title: Anchor link to this section for reference
toc_depth: 4
- pymdownx.snippets:
auto_append:
- resources/mkdocs/abbreviations.md
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: false
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
linenums: true
anchor_linenums: true
auto_title: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format