-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathmkdocs.yaml
154 lines (148 loc) · 4.25 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
146
147
148
149
150
151
152
153
154
site_name: Kreuzberg
site_description: A modern text extraction library supporting PDFs, images, office documents and more
site_url: https://goldziher.github.io/kreuzberg
site_author: Kreuzberg Contributors
repo_name: Goldziher/kreuzberg
repo_url: https://github.com/Goldziher/kreuzberg
edit_uri: edit/main/docs/
copyright: Copyright © 2023-2025 Kreuzberg Contributors
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: lime
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: lime
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- content.code.copy
- content.code.annotate
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.top
- navigation.footer
- search.highlight
- search.share
- search.suggest
- toc.follow
- announce.dismiss
icon:
repo: fontawesome/brands/github
language: en
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
linenums: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- tables
- toc:
permalink: true
toc_depth: 3
plugins:
- search
- social
- minify:
minify_html: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
show_source: true
show_root_heading: true
heading_level: 2
show_category_heading: true
show_if_no_docstring: false
show_signature_annotations: true
show_submodules: false
docstring_style: google
docstring_section_style: spacy
- git-revision-date-localized:
enable_creation_date: true
type: timeago
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Goldziher/kreuzberg
- icon: fontawesome/brands/python
link: https://pypi.org/project/kreuzberg/
version:
provider: mike
default: latest
extra_css:
- css/extra.css
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- User Guide:
- user-guide/index.md
- Basic Usage: user-guide/basic-usage.md
- Extraction Configuration: user-guide/extraction-configuration.md
- Metadata Extraction: user-guide/metadata-extraction.md
- Content Chunking: user-guide/chunking.md
- OCR Configuration: user-guide/ocr-configuration.md
- OCR Backends: user-guide/ocr-backends.md
- Supported Formats: user-guide/supported-formats.md
- Examples:
- examples/index.md
- Extraction Examples: examples/extraction-examples.md
- API Reference:
- api-reference/index.md
- Extraction Functions: api-reference/extraction-functions.md
- Types: api-reference/types.md
- OCR Configuration: api-reference/ocr-configuration.md
- Extractor Registry: api-reference/extractor-registry.md
- Exceptions: api-reference/exceptions.md
- Advanced:
- advanced/index.md
- Error Handling: advanced/error-handling.md
- Custom Hooks: advanced/custom-hooks.md
- Custom Extractors: advanced/custom-extractors.md
- Contributing: contributing.md
- Changelog: changelog.md