-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmkdocs.yml
126 lines (120 loc) · 3.07 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
site_name: Page Dewarp
site_author: Louis Maddox
site_description: >-
Document image dewarping library using a cubic sheet model
site_url: https://page-dewarp.vercel.app
repo_name: lmmx/page-dewarp
repo_url: https://github.com/lmmx/page-dewarp
strict: true
watch: [src]
extra_css:
- stylesheets/extra.css
theme:
name: material
custom_dir: docs/theme
palette:
- scheme: default
primary: white
icon:
repo: fontawesome/brands/github
features:
- announce.dismiss
- content.tabs.link
- content.code.annotate
- content.code.copy
- header.autohide
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.prune
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- search
- search.suggest
font:
text: Inter
code: Source Code Pro
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/lmmx
generator: false
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.definition
- 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
noclasses: true
pygments_style: lovelace
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shortener: true
normalize_issue_symbols: true
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- sane_lists
- toc:
permalink: true
plugins:
- autorefs
- extra-sass
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src/*/]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
line_length: 88
show_root_full_path: false
show_root_toc_entry: false
show_source: true
show_submodules: true
show_signature_annotations: true
- search
- section-index
- social:
cards_layout_options:
color: "#de0"
nav:
- Home: index.md
- Getting Started: get_started.md
# - Changelog: changelog.md
- API Reference:
- api/index.md
- "check_version": api/check_version.md
- "cli": api/cli.md
- "colours": api/colours.md
- "contours": api/contours.md
- "core": api/core.md
- "dewarp": api/dewarp.md
- "image": api/image.md
- "k_opt": api/k_opt.md
- "keypoints": api/keypoints.md
- "mask": api/mask.md
- "normalisation": api/normalisation.md
- "optimise": api/optimise.md
- "pdf": api/pdf.md
- "projection": api/projection.md
- "simple_utils": api/simple_utils.md
- "snoopy": api/snoopy.md
- "solve": api/solve.md
- "spans": api/spans.md
- "viewer": api/viewer.md