-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
113 lines (105 loc) · 2.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
site_name: "Ceylon AI"
site_url: "https://ceylon.ai"
repo_url: https://github.com/ceylonai/ceylon
repo_name: ceylonai/ceylon
copyright: Copyright 2025 SYIGEN LTD
extra:
# hide the "Made with Material for MkDocs" message
generator: false
version:
provider: ceylon
theme:
name: "material"
# custom_dir: docs/.overrides
palette:
- media: "(prefers-color-scheme)"
scheme: default
primary: black
accent: purple
toggle:
icon: material/lightbulb
name: "Switch to light mode"
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: purple
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: purple
toggle:
icon: material/lightbulb-auto-outline
name: "Switch to system preference"
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.path
# - navigation.expand
- navigation.indexes
- navigation.sections
- navigation.tracking
- toc.follow
# - navigation.tabs # don't use navbar tabs
logo: "img/logo.png"
favicon: "favicon.ico"
locale: en
highlightjs: true
extra_css:
- "extra/tweaks.css"
use_directory_urls: false
plugins:
- search
- tags
- offline
markdown_extensions:
- tables
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.caret
- pymdownx.critic
- pymdownx.mark
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tilde
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- sane_lists # this means you can start a list from any number
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Home: index.md
- Getting started:
- Quickstart: quickstart.md
- 5 minutes to Ceylon: 5-minutes-to-ceylon.md
- Start with a Playground: playground-start.md
- Technology: technology.md
- Core Concepts: core-concepts.md
- How to:
- Overview: tutorials.md
- Best Practices: best-practices.md
- Examples:
- Overview: examples/overview.md
- Playground:
- Meeting Scheduling: examples/playground/time-scheduling.md
- Single Item Auction: examples/playground/auction.md
- Task Manager: examples/playground/task-manager.md
- Direct Agent:
- Time Scheduling: examples/time-scheduling.md
- Single Item Auction: examples/auction.md
- Task Manager: examples/task-manager.md
- Distributed Agents: examples/connect-through-network.md