-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
71 lines (64 loc) · 1.61 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
site_name: "mkdocstrings-crystal"
site_description: "Crystal language doc generator for MkDocs, via mkdocstrings"
site_url: "https://mkdocstrings.github.io/crystal"
repo_url: "https://github.com/mkdocstrings/crystal"
edit_uri: blob/master/docs/
use_directory_urls: false
theme:
name: material
features:
- content.action.edit
- navigation.expand
icon:
repo: fontawesome/brands/github
palette:
primary: teal
accent: purple
extra_css:
- assets/style.css
watch:
- mkdocstrings_handlers
plugins:
- search
- section-index
- mkdocstrings:
handlers:
python:
options:
filters: ["!^_[^_]", "!__new__"]
show_signature_annotations: true
show_source: false
show_root_heading: true
show_root_full_path: false
markdown_extensions:
- pymdownx.details
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.saneheaders
- pymdownx.superfences
- pymdownx.snippets:
check_paths: true
base_path:
- !relative $config_dir
- callouts
- admonition
- def_list
- toc:
permalink: "#"
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
nav:
- Introduction: README.md
- Quickstart:
- quickstart/index.md
- Migrate from `crystal doc`: quickstart/migrate.md
- Managing Python dependencies: quickstart/python-dependencies.md
- Continuous build and publishing: quickstart/ci.md
- Configuration: configuration.md
- Styling: styling.md
- Extras: extras.md
- Troubleshooting: troubleshooting.md
- Introspection API: api.md
- Showcase: showcase.md