-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathmkdocs.yml
More file actions
229 lines (215 loc) · 7.38 KB
/
mkdocs.yml
File metadata and controls
229 lines (215 loc) · 7.38 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
site_name: Pony
copyright: >-
<strong>Resources</strong>:
<a href="/blog/">Blog</a> |
<a href="/faq/">FAQ</a> |
<a href="https://github.com/ponylang/ponyc/releases">Releases</a> |
<a href="/community/planet-pony/">Planet Pony</a>
<br>
<strong>Project</strong>:
<a href="/sponsors/">Sponsors</a> |
<a href="/community/norms/">Community Norms</a> |
<a href="/contribute/">Contributing</a>
<br>
Copyright © 2025 The Pony Developers
edit_uri: https://github.com/ponylang/ponylang-website/edit/main/docs/
repo_url: https://github.com/ponylang/ponyc
site_url: https://www.ponylang.io/
use_directory_urls: !ENV [USE_DIRECTORY_URLS, true]
not_in_nav: |
discover/**
sponsors/**
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/ponylang
- icon: fontawesome/brands/twitter
link: https://twitter.com/ponylang
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/ponylang.bsky.social
- icon: fontawesome/solid/comments
link: https://ponylang.zulipchat.com/
name: Zulip
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.highlight
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- smarty
- toc:
permalink: true
plugins:
- blog:
authors: True
blog_toc: True
post_excerpt: required
post_url_date_format: yyyy/MM
categories_url_format: "categories/{slug}"
- search
- ezlinks
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- llmstxt:
markdown_description: |
Pony is an open-source, object-oriented, actor-model, capabilities-secure,
high-performance programming language. This documentation covers learning
Pony, using the ecosystem, frequently asked questions, and the philosophy
behind the language.
full_output: llms-full.txt
sections:
Learn:
- learn/*.md
Use:
- use/*.md
- use/*/*.md
FAQ:
- faq/*.md
Discover:
- discover/*.md
theme:
name: material
favicon: assets/logo.png
features:
- content.action.edit
- content.code.copy
- content.code.select
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github
logo: assets/logo.png
palette:
# Light mode
- scheme: default
primary: brown
accent: amber
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: brown
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
nav:
- Home: "index.md"
- Learn:
- Overview: "learn/index.md"
- Installing Pony: "learn/installing-pony.md"
- Getting Help: "learn/getting-help.md"
- Reference Capabilities: "learn/reference-capabilities.md"
- Watch: "learn/watch.md"
- Papers: "learn/papers.md"
- Use:
- Overview: "use/index.md"
- Development Environment:
- Dependency Management: "use/dependency-management.md"
- Pony Language Server: "use/pony-lsp.md"
- Linting:
- Overview: "use/linting.md"
- Rule Reference: "use/linting/rule-reference.md"
- Documentation Generation: "use/documentation.md"
- LLM Skills: "use/llm-skills.md"
- Development:
- Testing:
- Overview: "use/testing.md"
- Coverage Reports: "use/testing/coverage-reports.md"
- Debugging:
- Overview: "use/debugging.md"
- Pony LLDB Cheat Sheet: "use/debugging/pony-lldb-cheat-sheet.md"
- Track Memory Usage: "use/debugging/track-memory-usage.md"
- Trace Pony Programs: "use/debugging/tracing.md"
- Performance:
- Overview: "use/performance.md"
- Performance Cheat Sheet: "use/performance/pony-performance-cheat-sheet.md"
- Working with the Compiler:
- Overview: "use/compiler.md"
- Runtime Options: "use/compiler/runtime-options.md"
- Custom ponyc Builds: "use/compiler/custom-ponyc-builds.md"
- Cross-Compilation:
- Overview: "use/cross-compilation.md"
- RISC-V 64-bit Linux: "use/cross-compilation/riscv64-linux.md"
- ARM Linux (Soft-Float): "use/cross-compilation/arm-linux.md"
- ARM Linux (Hard-Float): "use/cross-compilation/armhf-linux.md"
- Ecosystem:
- Packages: "use/packages.md"
- Build and Release Tools: "use/build-and-release-tools.md"
- Contribute:
- Overview: "contribute/index.md"
- Getting Started:
- Good First Issues: "contribute/good-first-issues.md"
- Project Documentation: "contribute/project-documentation.md"
- Triage Issues: "contribute/triage.md"
- Contributor Path: "contribute/contributor-path.md"
- Workflow:
- Submitting Pull Requests: "contribute/pull-requests.md"
- Issue and PR Labels: "contribute/labels.md"
- RFC Process: "contribute/rfcs.md"
- Releases: "contribute/releases.md"
- Working with the Compiler:
- Building ponyc from Source: "contribute/compiler/building-ponyc-from-source.md"
- Project Operations:
- CI:
- Overview: "contribute/ci.md"
- CI Image Organization: "contribute/ci/ci-image-organization.md"
- GitHub Actions and Security: "contribute/ci/gh-actions-security.md"
- ponyc CI Tiers: "contribute/ci/ponyc-ci-tiers.md"
- Scheduled Jobs: "contribute/ci/scheduled-jobs.md"
- Triggered Jobs: "contribute/ci/triggered-jobs.md"
- Infrastructure: "contribute/infrastructure.md"
- Pony Development Sync: "contribute/sync.md"
- Last Week in Pony: "contribute/lwip.md"
- Resources:
- Contributor Zulip Channels: "contribute/zulip-channels.md"
- Developer Resources:
- Arm Development with RPI 4: "contribute/developer-resources/arm-development-with-rpi-4.md"
- Performance Testing Setup: "contribute/developer-resources/performance-testing-setup.md"
- Community:
- Overview: "community/index.md"
- Connect:
- Zulip: "community/zulip.md"
- Norms: "community/norms.md"
- Governance: "community/governance.md"
- Events:
- Office Hours: "community/office-hours.md"
- Pony Development Sync: "community/development-sync.md"
- Virtual Users' Group: "community/virtual-users-group.md"
- Stay Informed:
- News: "community/news.md"
- Planet Pony: "community/planet-pony.md"
- Blog:
- "blog/index.md"
- FAQ:
- Overview: "faq/index.md"
- About Pony: "faq/about-pony.md"
- Code: "faq/code.md"
- Compiling: "faq/compiling.md"
- Ecosystem: "faq/ecosystem.md"
- Runtime: "faq/runtime.md"