-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
60 lines (58 loc) · 1.78 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
site_name: XMRig-API
site_url: https://hreikin.github.io/xmrig-api
repo_name: hreikin/xmrig-api
repo_url: https://github.com/hreikin/xmrig-api
copyright: MIT License
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
primary: black
accent: deep orange
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
accent: deep orange
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- content.code.copy
nav:
- "Home": "README.md"
- "Usage": "usage.md"
- "Examples": "examples.md"
- "Logging": "logger.md"
- "Reference":
- "Classes":
- "XMRigManager": "reference/manager.md"
- "XMRigAPI": "reference/api.md"
- "XMRigProperties": "reference/properties.md"
- "XMRigDatabase": "reference/db.md"
- "Exceptions":
- "XMRigAPIError": "reference/exceptions/xmrigapierror.md"
- "XMRigAuthorizationError": "reference/exceptions/xmrigauthorizationerror.md"
- "XMRigConnectionError": "reference/exceptions/xmrigconnectionerror.md"
- "XMRigDatabaseError": "reference/exceptions/xmrigdatabaseerror.md"
- "XMRigManagerError": "reference/exceptions/xmrigmanagererror.md"
- "XMRigPropertiesError": "reference/exceptions/xmrigpropertieserror.md"
- "Contributing": "CONTRIBUTING.md"
plugins:
- search
- mkdocstrings
- include-markdown
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences