-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
160 lines (137 loc) · 3.71 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
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
site_name: The Radon Programming Language
site_description: "The Radon Programming Language"
site_author: "Md. Almas Ali"
site_url: "https://radon-project.github.io/"
repo_url: "https://github.com/radon-project/radon"
repo_name: "radon-project/radon"
use_directory_urls: false
theme:
name: material
custom_dir: "docs/theme"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indego
accent: amber
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indego
accent: amber
toggle:
icon: material/lightbulb
name: "Switch to light mode"
features:
- content.tabs.link
- content.code.select
- content.code.copy
- content.tooltips
- search.suggest
- search.highlight
- navigation.path
- navigation.top
logo: "assets/images/radon.png"
favicon: "assets/images/favicon.ico"
extra:
analytics:
provider: google
property: G-KJJTKMQBZE
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/radon-project
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/md-almasali/
- icon: fontawesome/solid/globe
link: https://almasali.net
meta:
- name: description
content: "Radon a programming language"
- name: keywords
content: "radon, radon programming language, radon language, radon-lang"
- name: author
content: "Md. Almas Ali"
- name: og:title
content: "Radon"
- name: og:description
content: "Radon a programming language"
- name: og:image
content: "assets/images/radon.png"
- name: og:url
content: "https://radon-project.github.io/"
- name: og:site_name
content: "Radon"
- name: og:locale
content: "en_US"
- name: og:type
content: "website"
- name: twitter:card
content: "summary"
- name: twitter:site
content: "@radon-project"
- name: twitter:creator
content: "@almasali22"
- name: twitter:title
content: "Radon"
- name: twitter:description
content: "The Radon Programming Language"
- name: twitter:image
content: "assets/images/radon.png"
- name: twitter:image:alt
content: "Radon"
- name: twitter:url
content: "https://radon-project.github.io/"
generator: false
copyright: Build with love for the community © 2023-2024
plugins:
- search
extra_javascript:
- 'assets/radon-highlight.js'
extra_css:
- 'assets/extra.css'
nav:
- Overview: index.md
- Installation: installation.md
- Quick Start: quick-start.md
- Documentation:
- Data Types: data-types.md
- Control Flow: control-flow.md
- Loops: loops.md
- Functions: functions.md
- Classes: classes.md
- Modules: modules.md
- Input/Output: input-output.md
- Error Handling: error-handling.md
- File Handling: file-handling.md
- Strings: strings.md
- Arrays: arrays.md
- Built-in Functions: built-in-functions.md
- Language Reference: language-reference.md
- Standard Library: standard-library.md
- Tools: tools.md
- Blog:
Hello World: blog/hello-world.md
- Contribution: contribution.md
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- pymdownx.tabbed:
alternate_style: true
- admonition
- codehilite
- extra
- attr_list
- md_in_html
- abbr
- admonition
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- stylesheets/extra.css