Skip to content

Commit ae4ef78

Browse files
feat: replace ASCII diagram with mermaid and enable mermaid fences
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ebb6656 commit ae4ef78

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ Launch [Positron](https://github.com/posit-dev/positron) on **Alpine** (CU Bould
88

99
The script allocates a compute node on your HPC cluster via SLURM and provides SSH connection instructions for remote development with Positron. It uses a **ProxyJump** SSH pattern to connect through the login node to your allocated compute node.
1010

11-
```
12-
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
13-
│ Your Machine│──SSH──▶│ Login Node │──SSH──▶│ Compute Node │
14-
│ (Positron) │ │ (gateway) │ │ (workspace) │
15-
└──────────────┘ └──────────────┘ └──────────────┘
11+
```mermaid
12+
graph LR
13+
A["🖥️ Your Machine\n(Positron)"] -->|SSH| B["🌐 Login Node\n(gateway)"]
14+
B -->|ProxyJump| C["⚡ Compute Node\n(workspace)"]
1615
```
1716

1817
The workflow is three steps:

zensical.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ toggle.name = "Switch to light mode"
4444
[project.markdown_extensions.pymdownx.details]
4545

4646
[project.markdown_extensions.pymdownx.superfences]
47+
custom_fences = [
48+
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }
49+
]
4750

4851
[project.markdown_extensions.pymdownx.tabbed]
4952
alternate_style = true

0 commit comments

Comments
 (0)