-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
64 lines (56 loc) · 2.05 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
site_name: Simplemma
theme:
name: "material"
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- toc.follow
extra_css:
- css/mkdocstrings.css
repo_url: https://github.com/adbar/simplemma
plugins:
- search:
lang: en
- mkdocstrings:
handlers:
python:
options:
group_by_category: true
show_category_heading: true
nav:
- Introduction: index.md
- Reference:
- Lemmatizer: reference/lemmatizer.md
- Language Detector: reference/language_detector.md
- Tokenizer: reference/tokenizer.md
- TokenSampler: reference/token_sampler.md
- Utils: reference/utils.md
- Strategies:
- Lemmatization Strategy: reference/strategies/lemmatization_strategy.md
- Dictionary Lookup Strategy: reference/strategies/dictionary_lookup.md
- Greedy Dictionary Lookup Strategy: reference/strategies/greedy_dictionary_lookup.md
- Hyphen removal Strategy: reference/strategies/hyphen_removal.md
- Rules Strategy: reference/strategies/rules.md
- Prefix Decomposition Strategy: reference/strategies/prefix_decomposition.md
- Affix Decomposition Strategy: reference/strategies/affix_decomposition.md
- Default Strategy: reference/strategies/default.md
- Fallback Strategies:
- Lemmatization Fallback Strategy: reference/strategies/fallback/lemmatization_fallback_strategy.md
- To Lowercase Strategy: reference/strategies/fallback/to_lowercase.md
- Raise Error Strategy: reference/strategies/fallback/raise_error.md
- Dictionaries:
- Dictionary Factory: reference/strategies/dictionaries/dictionary_factory.md
- Languages Supported: supported-languages.md
- Contributing: contributing.md
- Credit & Licenses: credit-and-licenses.md