-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
55 lines (55 loc) · 1.22 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
site_name: mocr
site_description: Meaningful Optical Character Recognition from identity cards with Deep Learning.
site_url: https://mocr.verifid.app/
theme:
name: material
palette:
primary: indigo
accent: amber
favicon: images/favicon.png
language: en
repo_name: verifid/mocr
repo_url: https://github.com/verifid/mocr
edit_uri: ''
nav:
- mocr: index.md
- installation.md
- Module Documentation:
- module/face_detection.md
- module/text_recognition.md
- module/cli.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- mocr
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- markdown_include.include:
base_path: docs
- admonition
- codehilite
- extra
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/verifid
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/abdullahselek
- icon: fontawesome/solid/globe
link: https://verifid.app
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- https://unpkg.com/mermaid@8.4.6/dist/mermaid.min.js
- js/termynal.js
- js/custom.js