-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
70 lines (70 loc) · 1.8 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
site_name: WordSiv
site_url: https://wordsiv.com
theme:
palette:
primary: amber
name: material
features:
- content.code.select
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
markdown_extensions:
- attr_list
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- docs/snippets
- examples
- pymdownx.superfences:
nav:
- Introduction: index.md
- Examples:
- Quick Reference: examples/quick-reference.md
- Hoefler-style Proof: examples/hoefler-style-proof.md
- GJ-style Proof: examples/gj-style-proof.md
- Init/Medi/Fina Proof: examples/init-medi-fina-proof.md
- Usage:
- Basic Usage: usage/basic-usage.md
- Generating Text: usage/generating-text.md
- Filtering Words: usage/filtering-words.md
- API Reference:
wordsiv:
wordsiv: api-reference.md
- Release Notes: release-notes.md
repo_url: https://github.com/tallpauley/wordsiv
watch:
- wordsiv
- examples
plugins:
- autorefs
- search
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [wordsiv]
import:
- https://docs.python.org/3/objects.inv
options:
inherited_members:
- Vocab
docstring_options:
ignore_init_summary: true
show_labels: true
separate_signature: true
preload_modules:
- wordsiv
signature_crossrefs: true
summary:
attributes: true
modules: false
functions: true
classes: true
docstring_style: google
cross_references: true