-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
60 lines (60 loc) · 1.5 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
site_name: ftmq
site_url: https://docs.investigraph.dev/lib/ftmq
repo_url: https://github.com/investigativedata/ftmq
nav:
- Intro: index.md
- Command line: cli.md
- query.md
- stores.md
- aggregation.md
- Reference:
- ftmq.cli: reference/cli.md
- ftmq.io: reference/io.md
- ftmq.query: reference/query.md
- ftmq.store: reference/store.md
- ftmq.util: reference/util.md
theme:
name: material
logo: https://cdn.investigativedata.org/style/logo_basic_dark.svg
favicon: https://cdn.investigativedata.org/style/favicon.svg
features:
- navigation.instant
- navigation.tracking
- navigation.sections
# - navigation.footer
- toc.follow
- content.code.copy
extra_css:
- stylesheets/extra.css
extra:
social:
- icon: material/mail
link: mailto:hi@investigativedata.org
- icon: material/web
link: https://investigativedata.io
- icon: material/github
link: https://github.com/investigativedata/ftmq
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- mkdocs-click
- pymdownx.details
- admonition
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
show_root_heading: false
show_object_full_path: false