Skip to content

Commit 993e54c

Browse files
committed
update diagram articles
1 parent 5a0f9ba commit 993e54c

8 files changed

+2061
-960
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ pnpm-debug.log*
2222

2323
.braindb
2424
.turbo
25+
packages/website/public/beoe/

packages/website/astro.config.mjs

+9-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ import { rehypeGnuplot } from "@beoe/rehype-gnuplot";
1313
import starlightDigitalGarden from "starlight-digital-garden";
1414

1515
const cache = await getCache();
16+
const diagramConfigs = {
17+
cache,
18+
strategy: "file",
19+
darkScheme: "class",
20+
fsPath: "public/beoe",
21+
webPath: "/beoe",
22+
};
1623

1724
// https://astro.build/config
1825
export default defineConfig({
@@ -77,12 +84,9 @@ export default defineConfig({
7784
markdown: {
7885
// remarkPlugins: [],
7986
rehypePlugins: [
80-
[
81-
rehypeMermaid,
82-
{ class: "not-content", cache, strategy: "img-class-dark-mode" },
83-
],
87+
[rehypeMermaid, diagramConfigs],
88+
[rehypeGnuplot, diagramConfigs],
8489
[rehypeGraphviz, { class: "not-content", cache }],
85-
[rehypeGnuplot, { class: "not-content", cache }],
8690
rehypeHeadingIds,
8791
[rehypeAutolinkHeadings, { behavior: "append" }],
8892
],

packages/website/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
14-
"@astrojs/markdown-remark": "^5.3.0",
15-
"@astrojs/starlight": "^0.28.3",
16-
"@beoe/cache": "^0.0.1",
17-
"@beoe/rehype-gnuplot": "^0.0.2",
18-
"@beoe/rehype-graphviz": "^0.0.2",
19-
"@beoe/rehype-mermaid": "^0.0.2",
14+
"@astrojs/markdown-remark": "^6.0.0",
15+
"@astrojs/starlight": "^0.29.2",
16+
"@beoe/cache": "^0.1.0",
17+
"@beoe/rehype-gnuplot": "^0.3.0",
18+
"@beoe/rehype-graphviz": "^0.3.0",
19+
"@beoe/rehype-mermaid": "^0.3.0",
2020
"@braindb/core": "0.0.15",
21-
"@iconify/json": "^2.2.261",
22-
"@pagefind/default-ui": "^1.1.1",
23-
"astro": "^4.16.6",
24-
"astro-og-canvas": "^0.5.4",
25-
"astro-seo-schema": "^4.0.2",
21+
"@iconify/json": "^2.2.279",
22+
"@pagefind/default-ui": "^1.2.0",
23+
"astro": "^4",
24+
"astro-og-canvas": "^0.5.5",
25+
"astro-seo-schema": "^4",
2626
"canvaskit-wasm": "^0.39.1",
2727
"edeap": "0.0.3",
2828
"graphology": "^0.25.4",
@@ -31,16 +31,16 @@
3131
"graphology-svg": "^0.1.3",
3232
"graphology-utils": "^2.5.2",
3333
"netlify-plugin-playwright-cache": "^0.0.1",
34-
"playwright": "^1.48.1",
35-
"playwright-chromium": "^1.48.1",
34+
"playwright": "^1.49.0",
35+
"playwright-chromium": "^1.49.0",
3636
"rehype-autolink-headings": "^7.1.0",
3737
"schema-dts": "^1.1.2",
3838
"sharp": "^0.33.5",
39-
"sigma": "3.0.0-beta.33",
39+
"sigma": "3.0.0-beta.38",
4040
"starlight-digital-garden": "workspace:*",
4141
"starlight-katex": "workspace:*",
42-
"typescript": "^5.6.3",
43-
"unplugin-icons": "^0.19.3",
42+
"typescript": "^5.7.2",
43+
"unplugin-icons": "^0.21.0",
4444
"venn-isomorphic": "^0.0.2"
4545
}
4646
}

packages/website/src/content/docs/recipes/diagrams.md

+2-11
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There are two ways to work with diagrams:
1010
- [[mermaid-diagrams-in-markdown|Mermaid]]
1111
- [[gnuplot-diagram]]
1212
- [[graphviz-diagram]]
13-
- [Astro D2](https://astro-d2.vercel.app/)
13+
- [Astro D2](https://beoe.stereobooster.com/diagrams/d2/)
1414
2. Use them as components inside MDX or Astro pages:
1515
- [[timeline-diagram]]
1616
- [[euler-diagram]]
@@ -20,13 +20,4 @@ There are two ways to work with diagrams:
2020

2121
## Ideal solution
2222

23-
- It should be rendered as (inline) SVG on the server side:
24-
- No JavaScript required on the client side.
25-
- Users can use <kbd>Cmd</kbd> + <kbd>F</kbd> to search text.
26-
- Style it with CSS variables (or CSS classes):
27-
- This would allow for implementing dark mode without JavaScript.
28-
- Optionally add [[svg-pan-zoom|small JS to implement pan/zoom/drag]].
29-
30-
## Ideas
31-
32-
- [Penrose](https://github.com/penrose/penrose)
23+
Read more about different options and trade-offs [here](https://beoe.stereobooster.com/start-here/getting-started/).

packages/website/src/content/docs/recipes/gnuplot-diagram.mdx

+27-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tags: [markdown, code-fences, diagram]
44
description: Gnuplot inside "code fences" converted to diagrams - static SVGs, no client-side JavaScript
55
---
66

7-
```gnuplot
7+
```gnuplot alt="example of the Gnuplot diagram"
88
# Plotting filledcurves with different transparencies
99
#
1010
# AUTHOR: Hagen Wierstorf
@@ -66,13 +66,22 @@ import { Steps } from "@astrojs/starlight/components";
6666

6767
2. Configure Astro. See note about [[rehype-plugins-for-code]].
6868

69-
```js {2, 6}
69+
```js {2, 7-14}
7070
// astro.config.mjs
7171
import { rehypeGnuplot } from "@beoe/rehype-gnuplot";
7272

7373
export default defineConfig({
7474
markdown: {
75-
rehypePlugins: [[rehypeGnuplot, { class: "not-content" }]],
75+
rehypePlugins: [
76+
[
77+
rehypeGnuplot,
78+
{
79+
strategy: "file",
80+
fsPath: "public/beoe",
81+
webPath: "/beoe",
82+
},
83+
],
84+
],
7685
},
7786
});
7887
```
@@ -85,15 +94,25 @@ import { Steps } from "@astrojs/starlight/components";
8594

8695
4. **Optional** configure cache
8796

88-
```js {2, 4, 8}
97+
```js {2, 4, 15}
8998
// astro.config.mjs
9099
import { getCache } from "@beoe/cache";
91100

92101
const cache = await getCache();
93102

94103
export default defineConfig({
95104
markdown: {
96-
rehypePlugins: [[rehypeGnuplot, { class: "not-content", cache }]],
105+
rehypePlugins: [
106+
[
107+
rehypeGnuplot,
108+
{
109+
strategy: "file",
110+
fsPath: "public/beoe",
111+
webPath: "/beoe",
112+
cache,
113+
},
114+
],
115+
],
97116
},
98117
});
99118
```
@@ -105,18 +124,18 @@ import { Steps } from "@astrojs/starlight/components";
105124
## Example
106125

107126
````md
108-
```gnuplot
127+
```gnuplot alt="Plot of sin(x)"
109128
plot [-10:10] sin(x)
110129
```
111130
````
112131

113-
```gnuplot
132+
```gnuplot alt="Plot of sin(x)"
114133
plot [-10:10] sin(x)
115134
```
116135

117136
## Bonus: XKCD-style
118137

119-
```gnuplot
138+
```gnuplot alt="example of the Gnuplot diagram in XKCD style"
120139
# Gnuplot file that plots a couple of functions in the xkcd style
121140
# Not a proper rendition, as the axis are still straight lines
122141
# Also, when plotting functions, the jiggling can only be done in

packages/website/src/content/docs/recipes/graphviz-diagram.mdx

+3-16
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tags: [markdown, code-fences, diagram]
44
description: Graphviz inside "code fences" converted to diagrams - static SVGs, no client-side JavaScript
55
---
66

7-
```dot
7+
```dot alt="example of the Graphviz diagram"
88
digraph finite_state_machine {
99
bgcolor="transparent";
1010
fontname="Helvetica,Arial,sans-serif";
@@ -116,13 +116,13 @@ To remove the background, use `bgcolor="transparent"`.
116116
## Example
117117

118118
````md
119-
```dot
119+
```dot alt="example of the Graphviz diagram"
120120
digraph x {bgcolor="transparent";rankdir=LR;node [shape=box]
121121
Start -> Stop}
122122
```
123123
````
124124

125-
```dot
125+
```dot alt="example of the Graphviz diagram"
126126
digraph x {bgcolor="transparent";rankdir=LR;node [shape=box]
127127
Start -> Stop}
128128
```
@@ -138,16 +138,3 @@ See for inspiration:
138138

139139
- [tintinweb.graphviz-interactive-preview](https://marketplace.visualstudio.com/items?itemName=tintinweb.graphviz-interactive-preview)
140140
- [SVG Zoom To Element](https://bettertyped.github.io/react-zoom-pan-pinch/?path=/story/examples-svg-zoom-to-element--svg-zoom-to-element)
141-
142-
Alternatively, I can parse DOT language and use different renderers, for example:
143-
144-
- **Parsers**
145-
- [ts-graphviz](https://github.com/ts-graphviz/ts-graphviz)
146-
- [vis.js](https://github.com/visjs/vis-network/blob/master/lib/network/dotparser.js)
147-
- [dotparser](https://www.npmjs.com/package/dotparser)
148-
- [@dagrejs/graphlib-dot](https://www.npmjs.com/package/@dagrejs/graphlib-dot)
149-
- **Renderers**
150-
- [Graphviz JSON](https://graphviz.org/docs/outputs/json/) to render coordinates
151-
- [vizdom](https://github.com/vizdom-dev/vizdom)
152-
- [Apache ECharts](https://echarts.apache.org/handbook/en/basics/release-note/5-5-0/#server-side-rendering-%EF%BC%8B-lightweight-client-runtime) supports "hydration" of SVGs
153-
- [Others](https://graph.stereobooster.com/notes/Visualisation)

0 commit comments

Comments
 (0)