-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
mkdocs.yml
50 lines (47 loc) · 1.08 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
site_name: jellyfish
site_url: https://jamesturk.github.io/jellyfish/
site_author: James Turk
site_description: A python library for approximate and phonetic matching of strings.
copyright: Copyright © 2011 James Turk
repo_url: https://github.com/jamesturk/jellyfish
repo_name: jamesturk/jellyfish
edit_uri: edit/main/docs/
theme:
logo: assets/white-jellyfish.svg
name: material
palette:
- scheme: default
primary: teal
accent: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
#- navigation.tabs
- navigation.sections
- navigation.top
- content.tabs.link
icon:
repo: fontawesome/brands/github
markdown_extensions:
- admonition
- def_list
- pymdownx.highlight
- pymdownx.tabbed
- pymdownx.superfences
- toc:
permalink: true
plugins:
- search
extra_css:
- assets/extra.css
nav:
- 'index.md'
- 'functions.md'
- 'changelog.md'