-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
54 lines (54 loc) · 1.2 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
site_name: nerd
site_description: Python module for Named Entity Recognition (NER) using natural language processing.
site_url: https://nerd.verifid.app/
theme:
name: material
palette:
primary: light-blue
accent: amber
favicon: images/favicon.png
language: en
repo_name: verifid/ner-d
repo_url: https://github.com/verifid/ner-d
edit_uri: ''
nav:
- ner-d: index.md
- installation.md
- Module Documentation:
- module/ner-d.md
- module/cli.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- nerd
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