-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
62 lines (60 loc) · 1.79 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
site_name: Docprompt
site_url: https://docs.docprompt.io
repo_url: https://github.com/docprompt/Docprompt
theme:
name: material
logo: assets/static/img/logo.png
favicon: assets/static/img/logo.png
features:
- navigation.instant
- navigation.instant.prefetch
plugins:
- search
- blog
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [docprompt]
options:
docstring_style: google
show_source: true
show_submodules: true
nav:
- Getting Started: index.md
- How-to Guides:
- Perform OCR:
- Basic OCR Usage: guide/ocr/basic_usage.md
- Customizing OCR Providers: guide/ocr/provider_config.md
- Lightning-Fast Doc Search: guide/ocr/advanced_search.md
- OCR-based Workflows: guide/ocr/advanced_workflows.md
- Classify Pages:
- Binary Classification: guide/classify/binary.md
- Single-Label Classification: guide/classify/single.md
- Multi-Label Classification: guide/classify/multi.md
- Extract Tables: guide/table_extraction/extract_tables.md
- Concepts:
- Primatives: concepts/primatives.md
- Nodes: concepts/nodes.md
- Providers: concepts/providers.md
- Provenance: concepts/provenance.md
- Cloud: enterprise.md
- Blog:
- blog/index.md
- API Reference:
- Docprompt SDK: reference/
- Enterpise API: enterprise/
- Community:
- Contributing: community/contributing.md
- Versioning: community/versioning.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg