-
Notifications
You must be signed in to change notification settings - Fork 594
Expand file tree
/
Copy pathmkdocs.yml
More file actions
167 lines (155 loc) · 5.33 KB
/
mkdocs.yml
File metadata and controls
167 lines (155 loc) · 5.33 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
site_url: https://docs.exaloop.io
site_name: ""
repo_url: https://github.com/exaloop/codon
repo_name: exaloop/codon
theme:
name: material
custom_dir: docs/overrides
logo: img/codon-white.svg
icon:
repo: fontawesome/brands/github
favicon: img/favicon.png
font:
text: Open Sans
code: Source Code Mono
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- search.suggest
- search.highlight
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.tabs
- navigation.top
- announce.dismiss
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/exaloop
- icon: fontawesome/brands/discord
link: https://discord.gg/HeWRhagCmP
- icon: fontawesome/brands/x-twitter
link: https://x.com/exaloop
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/company/exaloop
generator: false
copyright: Copyright © 2026 Exaloop, Inc.
extra_javascript:
- js/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- css/extra.css
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.highlight:
use_pygments: true
line_spans: __span
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.extra
- pymdownx.blocks.caption
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
- admonition
- footnotes
plugins:
- tags
- typeset
- optimize
- search
- macros
- redirects:
# redirects from old docs site
redirect_maps:
'codon/index.md': 'index.md'
'codon/general/intro.md': 'start/install.md'
'codon/general/faq.md': 'start/faq.md'
'codon/general/differences.md': 'language/overview.md#differences-with-python'
'codon/general/releases.md': 'start/changelog.md'
'codon/general/roadmap.md': 'developers/roadmap.md'
'codon/language-features/basics.md': 'language/overview.md'
'codon/language-features/collections.md': 'language/overview.md'
'codon/language-features/functions.md': 'language/overview.md'
'codon/language-features/classes.md': 'language/classes.md'
'codon/language-features/generators.md': 'language/overview.md'
'codon/language-features/statics.md': 'language/meta.md'
'codon/language-features/extra.md': 'language/lowlevel.md'
'codon/language-features/ffi.md': 'integrations/cpp/cpp-from-codon.md'
'codon/language-features/llvm.md': 'language/llvm.md'
'codon/interoperability/numpy.md': 'libraries/numpy.md'
'codon/interoperability/python.md': 'integrations/python/python-from-codon.md'
'codon/interoperability/decorator.md': 'integrations/python/codon-from-python.md'
'codon/interoperability/pyext.md': 'integrations/python/extensions.md'
'codon/interoperability/cpp.md': 'integrations/cpp/codon-from-cpp.md'
'codon/interoperability/jupyter.md': 'integrations/jupyter.md'
'codon/advanced/parallel.md': 'parallel/multithreading.md'
'codon/advanced/gpu.md': 'parallel/gpu.md'
'codon/advanced/ir.md': 'developers/ir.md'
'codon/advanced/build.md': 'developers/build.md'
nav:
- Get Started:
- Installation: start/install.md
- Usage: start/usage.md
- FAQ: start/faq.md
- Changelog: start/changelog.md
- Language:
- Overview: language/overview.md
- Classes: language/classes.md
- Generics: language/generics.md
- Metaprogramming: language/meta.md
- Low-Level Programming: language/lowlevel.md
- Inline LLVM IR: language/llvm.md
- Libraries:
- Standard Library: libraries/stdlib.md
- NumPy: libraries/numpy.md
- API Reference: libraries/api/index.md
- Integrations:
- Python:
- Call Python from Codon: integrations/python/python-from-codon.md
- Call Codon from Python: integrations/python/codon-from-python.md
- Create Python Extensions: integrations/python/extensions.md
- C/C++:
- Call C/C++ from Codon: integrations/cpp/cpp-from-codon.md
- Call Codon from C/C++: integrations/cpp/codon-from-cpp.md
- Embed Codon JIT: integrations/cpp/jit.md
- Jupyter: integrations/jupyter.md
- Parallel Programming:
- Multithreading: parallel/multithreading.md
- GPU Programming: parallel/gpu.md
- SIMD Programming: parallel/simd.md
- Labs: labs/index.md
- Developers:
- Compilation Flow: developers/compilation.md
- Intermediate Representation: developers/ir.md
- Extend Codon: developers/extend.md
- Build from Source: developers/build.md
- Contribute: developers/contribute.md
- Roadmap: developers/roadmap.md
- Blog: https://exaloop.io/blog