forked from briangu/klongpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
60 lines (53 loc) · 1.51 KB
/
mkdocs.yml
File metadata and controls
60 lines (53 loc) · 1.51 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
site_name: KlongPy
site_url: https://briangu.github.io/klongpy
repo_url: https://github.com/briangu/klongpy
repo_name: briangu/klongpy
# Define the source directory for Markdown files
docs_dir: 'docs'
# Define the directory for the built HTML files
site_dir: 'site'
# Navigation structure
nav:
- Home: 'index.md'
- Quick Start: 'quick-start.md'
- Examples: 'examples.md'
- Guides:
- Python Integration: 'python_integration.md'
- PyTorch Backend & Autograd: 'torch_backend.md'
- Performance: 'performance.md'
- Reference:
- Operators: 'operators.md'
- REPL: 'repl.md'
- Data & Systems:
- Fast Columnar Database: 'fast_columnar_database.md'
- Table & Key-Value Store: 'table_and_key_value_stores.md'
- IPC Capabilities: 'ipc_capabilities.md'
- Web Server: 'web_server.md'
- WebSockets: 'websockets.md'
- Timers: 'timer.md'
# Theme configuration
theme:
name: 'material'
logo: 'assets/images/klongpy_logo.jpg'
palette:
primary: 'indigo'
accent: 'indigo'
# Plugins configuration (if any plugins are used)
plugins:
- search
# Extensions configuration (if any Markdown extensions are used)
markdown_extensions:
- toc:
permalink: true
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
# Google Analytics or other tracking (if you want to add tracking)
# google_analytics:
# - 'UA-XXXXX-X'
# - 'auto'