-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmkdocs.yml
More file actions
113 lines (104 loc) · 2.72 KB
/
mkdocs.yml
File metadata and controls
113 lines (104 loc) · 2.72 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
site_name: Blogs from Jaseci Labs
site_url: https://blogs.jaseci.org/
use_directory_urls: true
nav:
- Jaseci Labs: index.md
- Blog:
- blog/index.md
theme:
name: material
logo: assets/jaseci_labs_logo.PNG
favicon: assets/jaseci_labs_logo.PNG
font:
text: Roboto
code: Roboto Mono
palette:
# Palette toggle for light mode
- scheme: default
primary: black
accent: custom orange
# Palette toggle for dark mode
- scheme: slate
primary: black
accent: custom orange
features:
- content.code.copy
markdown_extensions:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: ["."]
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html
- admonition
- pymdownx.details
- tables
- toc:
permalink: "#"
extra_css:
- extra.css
extra:
generator: false
homepage: https://www.jaseci.org/
social:
- icon: fontawesome/brands/github
link: https://github.com/yourusername
- icon: fontawesome/brands/twitter
link: https://twitter.com/yourusername
copyright: Copyright © 2025 Jaseci Labs. All rights reserved.
extra_javascript:
- https://cdn.jsdelivr.net/pyodide/v0.27.0/full/pyodide.js
- https://unpkg.com/viz.js@2.1.2/viz.js
- https://unpkg.com/viz.js@2.1.2/full.render.js
- https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.52.2/min/vs/loader.min.js
- js/jac.monarch.js
- js/run-code.js
- js/author-tooltips.js
plugins:
- search
- blog:
blog_dir: blog
post_dir: "{blog}/posts"
post_date_format: medium
post_url_date_format: yyyy/MM/dd
post_url_format: "{date}/{slug}"
post_readtime: true
post_readtime_words_per_minute: 200
archive: true
archive_name: Archive
archive_date_format: MMMM yyyy
archive_url_date_format: yyyy/MM
archive_url_format: "archive/{date}"
categories: true
categories_name: Categories
categories_url_format: "category/{slug}"
categories_allowed:
- Jac Programming
- Tutorials
- Fixing the Broken
- AI
- Web Development
- Developers
authors: true
authors_file: "{blog}/.authors.yml"
pagination: true
pagination_per_page: 10
pagination_format: "$link_first $link_previous ~2~ $link_next $link_last"
draft: true
draft_on_serve: false
draft_if_future_date: false
hooks:
- scripts/handle_jac_compile_data.py