-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
56 lines (50 loc) · 1.39 KB
/
Copy pathmkdocs.yml
File metadata and controls
56 lines (50 loc) · 1.39 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
# mkdocs.yml
site_name: LLM-PathwayCurator
site_description: "Enrichment interpretations → audited, decision-grade pathway claims."
repo_name: kenflab/LLM-PathwayCurator
repo_url: https://github.com/kenflab/LLM-PathwayCurator
edit_uri: edit/main/docs/
theme:
name: material
logo: assets/LLM-PathwayCurator_logo.png
features:
- navigation.instant
- navigation.tracking
- navigation.top
- content.code.copy
- toc.integrate
nav:
- Home: index.md
- Getting started: getting-started.md
- Concepts: concepts.md
- User guide: user-guide.md
- Tutorials: tutorials.md
- API reference: api-reference.md
plugins:
- search
- mkdocstrings:
handlers:
python:
# docs/ lives under repo root; keep paths relative to repo root.
paths: ["src"]
options:
show_source: false
show_root_heading: true
docstring_style: numpy
# --- look & readability ---
show_object_full_path: false
show_root_toc_entry: false
merge_init_into_class: true
show_signature: true
separate_signature: true
signature_crossrefs: true
heading_level: 2
docstring_section_style: list
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
extra_css:
- stylesheets/extra.css