-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
56 lines (51 loc) · 1.49 KB
/
mkdocs.yml
File metadata and controls
56 lines (51 loc) · 1.49 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
site_name: gha-runner
site_url: ""
nav:
- Home: index.md
- Implementations:
- AWS: aws.md
- API Reference:
- Modules:
- Cloud Deployment: api/clouddeployment.md
- GitHub Interactions: api/gh.md
- Helpers:
- Workflow Commands: api/helper/workflow_cmds.md
- Input: api/helper/input.md
exclude_docs: |
README.md
theme: readthedocs
plugins:
- llmstxt:
markdown_description: A library for creating ephemeral GitHub Actions runners in Python.
full_output: llms-full.txt
sections:
Overview and Getting Started:
- index.md
Implementations:
- aws.md
API Reference:
- api/*.md
- mkdocstrings:
default_handler: python
handlers:
python:
options:
filters:
- "!^_"
# Docstring style selection
docstring_style: numpy # You can change this to 'numpy', 'sphinx', or 'restructuredtext'
# Heading/Section Options
show_root_heading: true
show_root_full_path: false
heading_level: 1
# Members Options
show_if_no_docstring: false
show_source: true
show_bases: true
# Signature Options
show_signature: true
show_signature_annotations: true
# Additional Options
separate_signature: true
line_length: 88
inherited_members: false