-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (72 loc) · 1.96 KB
/
Copy pathmkdocs.yml
File metadata and controls
76 lines (72 loc) · 1.96 KB
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
site_name: PrefixTrie Documentation
site_description: High-performance Cython implementation of a prefix trie for fuzzy string matching
site_url: https://austinv11.github.io/PrefixTrie/
repo_url: https://github.com/austinv11/PrefixTrie
repo_name: austinv11/PrefixTrie
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: sphinx
docstring_section_style: table
show_docstring_examples: true
show_docstring_other_parameters: true
show_docstring_parameters: true
show_docstring_raises: true
show_docstring_returns: true
show_docstring_yields: true
merge_init_into_class: true
show_submodules: false
show_source: false
show_bases: false
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: false
show_object_full_path: false
show_category_heading: true
group_by_category: true
heading_level: 2
members_order: source
filters:
- "!^_"
- "!^__"
nav:
- Home: index.md
- API Reference: reference.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true