Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
e32991e
Installed astro mermaid
H13NL Nov 13, 2025
46344ea
Merge branch 'processing:main' into hien
H13NL Nov 13, 2025
7156097
Fixed title for mermaid by adding jsx line to print title above diagram
Octavi00 Nov 15, 2025
63d79fa
Trying to split single line title into three lines hoping github will…
Octavi00 Nov 15, 2025
bf62f1d
This is my third attempt, trying to use a html solution without font …
Octavi00 Nov 15, 2025
e419dfe
Try #4, adding a space between title and mermaid text
Octavi00 Nov 15, 2025
531fa06
Merge pull request #1 from jai-serr-ace/hien
Octavi00 Nov 17, 2025
1753234
Revert "Installed astro mermaid"
H13NL Nov 20, 2025
f2a858c
Installed astro mermaid
H13NL Nov 20, 2025
e997385
Removed html fix for title, and use mermaid's class chart built in ti…
Octavi00 Nov 21, 2025
e083c25
Merge branch 'processing:main' into main
H13NL Nov 27, 2025
4b9274c
Merge branch 'processing:main' into hien
H13NL Nov 27, 2025
1b67d8f
Merge branch 'main' into hien
Octavi00 Nov 27, 2025
894cbed
Merge pull request #2 from jai-serr-ace/hien
Octavi00 Nov 27, 2025
4fdf550
Removed Html Line from Main branch (unneeded for current install)
Octavi00 Nov 27, 2025
bd3d7ba
Revert "Merge branch 'main' into hien"
Octavi00 Nov 27, 2025
08912b5
installed astro mermaid
H13NL Nov 27, 2025
11b23e5
removed some typo
H13NL Nov 27, 2025
15bdde6
removed some typo
H13NL Nov 27, 2025
052d60e
The MDX file includes two Mermaid diagrams—one for light mode and one…
jai-serr-ace Nov 27, 2025
cafacc3
Merge branch 'processing:main' into main
jai-serr-ace Dec 4, 2025
a4df402
Dark Diagram deleted and diagram set to default options
jai-serr-ace Dec 4, 2025
03df869
Deleted css options for the dark mode diagram
jai-serr-ace Dec 5, 2025
3b6c16a
Undid unnecessary changes to these 2 files
Octavi00 Dec 5, 2025
2a6b08b
Trying to remove changes on web_gl file
Octavi00 Dec 5, 2025
81fc8a1
added invert filter for darkmode diagrams
H13NL Dec 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import mdx from "@astrojs/mdx";
import tailwind from "@astrojs/tailwind";
import serviceWorker from "astrojs-service-worker";
import fast from "./src/scripts/fast-compress";
import mermaid from 'astro-mermaid';

// Allow skipping compression step for faster test build times
// DO NOT SKIP COMPRESSION FOR DEPLOYMENT!
Expand All @@ -20,6 +21,7 @@ export default defineConfig({
site: 'https://p5js.org',
compressHTML: false,
integrations: [
mermaid({autoTheme: true}),
preact({
compat: true,
}),
Expand Down
Loading