-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
118 lines (111 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
site_name: hadal
site_description: A simple and efficient tool for mining and aligning sentences with pre-trained models.
site_author: Pavel Stepachev
repo_name: rggdmonk/hadal
repo_url: https://github.com/rggdmonk/hadal
copyright: |
© 2023-present <a href="https://github.com/rggdmonk" target="_blank" rel="noopener">Pavel Stepachev</a>
edit_uri: edit/main/docs/
theme:
logo: assets_img/hadal_logo.svg
favicon: assets_img/hadal_logo.svg
icon:
repo: fontawesome/brands/github
annotation: material/arrow-right-circle-outline
name: material
features:
- navigation.expand
- navigation.footer
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- search.suggest
- search.highlight
- content.tabs.link
- content.code.select
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
primary: white
accent: deep orange
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- pymdownx.tabbed:
alternate_style: true
- markdown.extensions.abbr:
- markdown.extensions.admonition:
- markdown.extensions.attr_list:
- markdown.extensions.footnotes:
- markdown.extensions.meta:
- markdown.extensions.tables:
- markdown.extensions.toc:
permalink: true
- pymdownx.magiclink
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- section-index
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths:
- hadal
options:
docstring_style: google
allow_inspection: true
show_bases: true
show_source: true
heading_level: 3
show_root_heading: true
show_root_full_path: true
show_symbol_type_heading: true
show_symbol_type_toc: true
docstring_section_style: list
annotations_path: source
separate_signature: true
line_length: 80
show_signature: true
show_signature_annotations: true
members_order: source
filters: []
nav:
- Home:
- index.md
- installation.md
- Parallel Sentences:
- parallel_text.md
- parallel_sentence_mining/margin_based.md
- API reference:
- hadal: api_reference/
extra_css:
- stylesheets/extra.css