-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpydoc-markdown.yml
More file actions
72 lines (69 loc) · 1.8 KB
/
pydoc-markdown.yml
File metadata and controls
72 lines (69 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
loaders:
- type: python
search_path: [.]
packages: ["pyGCodeDecode"]
processors:
- type: filter
expression: not '.examples.' in name # Skip example modules
- type: filter
documented_only: true # Skip empty modules
- type: smart
- type: crossref
renderer:
# type: markdown
type: mkdocs
output_directory: docs
markdown:
insert_header_anchors: true
render_page_title: true
toc_maxdepth: 4
render_toc: false
use_fixed_header_levels: true
add_module_prefix: true
add_method_class_prefix: true
add_member_class_prefix: true
header_level_by_type:
Module: 2
Class: 3
Function: 4
pages:
- title: Home
name: index
source: README.md
- title: pyGCodeDecode API Reference
name: api
contents:
- pyGCodeDecode.*
# - pyGCodeDecode.cli
# - pyGCodeDecode.gcode_interpreter
# - pyGCodeDecode.abaqus_file_generator
# - pyGCodeDecode.plotter
# - pyGCodeDecode.tools
# - pyGCodeDecode.result
# - pyGCodeDecode.helpers
# - pyGCodeDecode.junction_handling
# - pyGCodeDecode.planner_block
# - pyGCodeDecode.state
# - pyGCodeDecode.state_generator
# - pyGCodeDecode.utils
mkdocs_config:
site_name: pyGCodeDecode Documentation
site_description: Generate time dependent boundary conditions from a .gcode file
site_author: FAST-LB at KIT
repo_url: https://github.com/FAST-LB/pyGCodeDecode
repo_name: FAST-LB/pyGCodeDecode
edit_uri: edit/main/docs/
theme:
name: readthedocs
highlightjs: true
nav:
- Home: index.md
- API Reference: api.md
markdown_extensions:
- toc:
permalink: true
- codehilite
- admonition
- tables
plugins:
- search