-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
69 lines (62 loc) · 1.78 KB
/
mkdocs.yml
File metadata and controls
69 lines (62 loc) · 1.78 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
site_name: Kos
site_description: 'Kos is zero-overhead and minimalist web framework for Vert.x'
site_author: 'Skullabs Contributors'
site_url: 'https://skullabs.github.io/kos/'
theme:
name: 'material'
custom_dir: 'docs_src/overrides'
palette:
scheme: slate
primary: 'deep orange'
accent: 'purple'
features:
- content.code.annotate
- content.tabs.link
# - header.autohide
# - navigation.expand
# - navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
# - toc.integrate
extra_css:
- "theme.css"
docs_dir: docs_src
site_dir: docs
repo_url: 'https://github.com/skullabs/kos'
edit_uri: 'https://github.com/skullabs/kos/edit/master/docs_src'
copyright: 'Copyright © 2018 - 2021 Skullabs Contributors'
# Plugins
plugins:
- search
- bootstrap-tables
# Extensions
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed
# - toc:
# permalink: true
nav:
- Home: index.md
- Getting Started: getting-started.md
- Manual:
- Basic Concepts: manual/developer/basic-concepts.md
- Rest API: manual/developer/rest-apis.md
- Rest Clients: manual/developer/rest-clients.md
- Event Listeners: manual/developer/event-listeners.md
- Logging: manual/developer/logging.md
- Configuration File: manual/developer/config-files.md
- Extending Kos:
- Plugins: manual/architecture/kos-plugins.md
- Kos Context: manual/architecture/kos-context.md
- Implementation Loaders: manual/architecture/implementation-loaders.md
- Internal Events: manual/architecture/internal-events.md
- License: license.md