-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
64 lines (58 loc) · 1.46 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
site_url: https://living-with-machines.github.io/alto2txt2fixture
repo_url: https://github.com/Living-with-machines/alto2txt2fixture
site_name: alto2txt2fixture
site_dir: _build
site_author: Aoife Hughes, Griffith Rees, Kalle Westerling
theme:
name: material
palette:
primary: black
accent: teal
features:
- content.code.copy
icon:
repo: fontawesome/brands/github-alt
nav:
- alto2txt2fixture: index.md
- Tutorial - User Guide:
- First Steps: tutorial/first-steps.md
- Running the Program: running.md
- Understanding the Results: understanding-results.md
- Code Reference: reference/
plugins:
- search:
lang: en
- autorefs
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- include-markdown
- offline
- mkdocstrings:
handlers:
python:
paths: [alto2txt2fixture]
options:
docstring_style: google
separate_signature: true
show_signature_annotations: true
line_length: 80
annotations_path: brief
signature_crossrefs: true
merge_init_into_class: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- css/code_select.css