-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
56 lines (56 loc) · 1.3 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: spampy
site_description: Spam filtering module with Machine Learning using Support Vector Machines.
site_url: https://spampy.abdullahselek.com/
theme:
name: material
palette:
primary: light-green
accent: amber
favicon: images/favicon.png
language: en
repo_name: abdullahselek/spampy
repo_url: https://github.com/abdullahselek/spampy
edit_uri: ''
nav:
- spampy: index.md
- installation.md
- Module Documentation:
- module/dataset_downloader.md
- module/email_processor.md
- module/spam_classifier.md
- module/cli.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
watch:
- spampy
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/abdullahselek/spampy
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/abdullahselek
- icon: fontawesome/solid/globe
link: https://abdullahselek.com
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