-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mkdocs.yml
89 lines (79 loc) · 2.47 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
# Project information
site_name: WordHoard
site_url: https://github.com/johnbumgarner/wordhoard
site_author: John Bumgarner
site_description: "WordHoard is a Python 3 module that can be used to obtain antonyms, synonyms, hypernyms, hyponyms, homophones and definitions."
# Repository
repo_name: johnbumgarner/wordhoard
repo_url: https://github.com/johnbumgarner/wordhoard
edit_uri: ""
# Copyright
copyright: Copyright © 2021 John Bumgarner
# Navigation Tree
nav:
- Home: index.md
- Basic Usage: basic_usage.md
- Parameters: parameters.md
- Output Formats: output_formats.md
- Additional Features: features.md
- Translations:
- Translation Overview: translations/translation_overview.md
- Translation Modules:
- Google Translate: translations/google_translate_module.md
- DeepL Translator: translations/deepl_translator_module.md
- Mymemory Translator: translations/mymemory_translator_module.md
- Supported Languages:
- DeepL Languages: translations/deepl_supported_translation_languages.md
- Google Languages: translations/google_supported_translation_languages.md
- Mymemory Languages: translations/mymemory_supported_translation_languages.md
- Dependencies: dependencies.md
- Limitations: limitations.md
- Code of Conduct: code_of_conduct.md
- Contributing: contributing.md
- License: license.md
- Release Notes: release-notes.md
# Configuration
theme:
name: 'material'
features:
- navigation.tracking
- navigation.expand
- search.suggest
- search.highlight
- announce.dismiss
palette:
- scheme: default
primary: indigo
accent: deep orange
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: red
accent: indigo
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
icon:
logo: logo
# Extensions
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- toc:
title: On this page
permalink: 🔗
permalink_title: Permalink to this headline
# Extras
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/johnbumgarner
# Plugins
plugins:
- git-revision-date-localized