-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
40 lines (36 loc) · 998 Bytes
/
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
site_name: Python CStruct documentation
docs_dir: docs
theme:
name: readthedocs
highlightjs: true
plugins:
- search
- autorefs
- mkdocstrings:
watch:
- cstruct
- examples
nav:
- Introduction: index.md
- Changelog: changelog.md
- License: license.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Source Code Repository: "https://github.com/andreax79/python-cstruct"
- Examples:
- "dir.py": examples/dir.md
- "fdisk.py": examples/fdisk.md
- "flexible_array.py": examples/flexible_array.md
- "who.py": examples/who.md
- API:
- "cstruct": api/module.md
- "cstruct.abstract": api/abstract.md
- "cstruct.base": api/base.md
- "cstruct.c_expr": api/c_expr.md
- "cstruct.c_parser": api/c_parser.md
- "cstruct.cstruct": api/cstruct.md
- "cstruct.field": api/field.md
- "cstruct.mem_cstruct": api/mem_cstruct.md
- "cstruct.native_types": api/native_types.md
markdown_extensions:
- markdown_include.include:
base_path: .