-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
56 lines (56 loc) · 1.25 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
site_name: facereg
site_description: Python module for face recognition with OpenCV and Deep Learning.
site_url: https://facereg.verifid.app/
theme:
name: material
palette:
primary: purple
accent: amber
favicon: images/favicon.png
language: en
repo_name: verifid/facereg
repo_url: https://github.com/verifid/facereg
edit_uri: ''
nav:
- facereg: index.md
- installation.md
- Module Documentation:
- module/face_encoder.md
- module/google_images.md
- module/recognize_faces.md
- module/cli.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- facereg
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/[email protected]/dist/mermaid.min.js
- js/termynal.js
- js/custom.js