-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
77 lines (73 loc) · 1.81 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
site_name: The Scandinavian Embedding Benchmark
docs_dir: "docs/"
repo_url: https://github.com/KennethEnevoldsen/Scandinavian-Embedding-Benchmark
watch: [src/, docs/]
edit_uri: "blob/main/docs/"
theme:
name: material
favicon: _static/logo.png
logo: _static/logo.png
features:
- navigation.tracking
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.action.edit
- content.action.view
- content.code.annotate
- content.tooltips
- navigation.footer
- navigation.indexes
- toc.follow
palette:
primary: white
accent: light blue
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
copyright: Copyright © 2023 Kenneth Enevoldsen
nav:
- The Benchmark:
- Benchmark: index.md
- Domains: domains.md
- Task Types: task_type.md
- Speed and Performance: speed_performance.md
- Datasets: datasets.md
- Package:
- Installation: installation.md
- Getting Started: getting_started.ipynb
- CLI: cli.md
- API: api.md
plugins:
- mkdocs-jupyter:
execute: false
# execute: true
# allow_errors: false
execute_ignore:
- "*.py"
- search
- mkdocstrings:
handlers:
python:
preload_modules: [pydantic]
paths: [src]
type: python
root_package: seb
docstring_style: google
options:
heading_level: 3
show_source: true
show_root_heading: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/KennethEnevoldsen/Scandinavian-Embedding-Benchmark