-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
36 lines (32 loc) · 902 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
site_name: Libmodule Documentation
site_description: C simple and elegant implementation of an Actor library
site_author: Federico Di Pierro
repo_url: https://github.com/FedeDP/libmodule/
nav:
- Home: index.md
- Concepts:
- concepts/concepts.md
- Build: concepts/build.md
- Module: concepts/mod.md
- Context: concepts/ctx.md
- Core API:
- core/core.md
- Module API: core/mod.md
- Context API: core/ctx.md
- Data Structures API:
- structs/structs.md
- Map: structs/map.md
- List: structs/list.md
- Queue: structs/queue.md
- Stack: structs/stack.md
- Bst: structs/bst.md
- Reference counted memory: mem/mem.md
- Thread Pool API: thpool/thpool.md
theme: readthedocs
markdown_extensions:
- toc:
permalink: "#"
- sane_lists
- smarty
plugins:
- search