-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
68 lines (64 loc) · 2 KB
/
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
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
site_name: ini.h
site_url: https://giosali.github.io/ini.h
site_author: Giovanni Salinas
site_description: A single-header library for reading and writing INI files in C++
repo_name: giosali/ini.h
repo_url: https://github.com/giosali/ini.h
edit_uri: ""
theme:
name: material
icon:
logo: material/book-open-page-variant
palette:
scheme: dracula
primary: pink
accent: pink
nav:
- Home: index.md
- API:
- ini: api/ini_namespace.md
- File:
- File: api/file/file.md
- Constructors: api/file/constructors.md
- Functions:
- add_section: api/file/functions/add_section.md
- clear: api/file/functions/clear.md
- empty: api/file/functions/empty.md
- has_section: api/file/functions/has_section.md
- remove_section: api/file/functions/remove_section.md
- rename_section: api/file/functions/rename_section.md
- size: api/file/functions/size.md
- write: api/file/functions/write.md
- Operators:
- operator[]: api/file/operators/operator[].md
- Section:
- Section: api/section/section.md
- Constructors: api/section/constructors.md
- Functions:
- clear: api/section/functions/clear.md
- empty: api/section/functions/empty.md
- get: api/section/functions/get.md
- has_key: api/section/functions/has_key.md
- remove_key: api/section/functions/remove_key.md
- rename_key: api/section/functions/rename_key.md
- set: api/section/functions/set.md
- size: api/section/functions/size.md
- Operators:
- operator[]: api/section/operators/operator[].md
- load: api/load.md
- open: api/open.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
- mkdocs_pymdownx_material_extras