fix(mermaid): replace \n with <br/> in all node labels

Mermaid renders literal \n as text on GitHub — line breaks inside
node labels require <br/> syntax. Fixed 12 occurrences across 4 files:

- SKILL.md: three-phase workflow (Phase 1/2/3 nodes)
- issue-00000001: three-phase workflow nodes
- pr-00000001: skill name node
- example-research-report.md: Stage 1-5 nodes in experimental workflow
This commit is contained in:
borealBytes
2026-02-19 18:35:25 -05:00
parent e05e5373d0
commit 7a3ce8fb18
4 changed files with 12 additions and 12 deletions

View File

@@ -63,9 +63,9 @@ flowchart LR
accTitle: Documentation Production Workflow
accDescr: Mermaid in markdown is the required source phase. Python and AI-generated images are optional downstream phases for polished output only.
source["📄 Phase 1 — Mermaid in Markdown\n(ALWAYS — source of truth)"]
python["🐍 Phase 2 — Python Generated\n(optional — when charts needed)"]
ai["🎨 Phase 3 — AI Generated\n(optional — polished visuals)"]
source["📄 Phase 1 — Mermaid in Markdown<br/>(ALWAYS — source of truth)"]
python["🐍 Phase 2 — Python Generated<br/>(optional — when charts needed)"]
ai["🎨 Phase 3 — AI Generated<br/>(optional — polished visuals)"]
final["📊 Final Output"]
source --> python

View File

@@ -84,7 +84,7 @@ flowchart TD
accTitle: New Skill Position in Ecosystem
accDescr: Shows markdown-mermaid-writing as the foundation layer that other skills build upon for documentation output
new["📄 markdown-mermaid-writing\n(this PR — new skill)"]
new["📄 markdown-mermaid-writing<br/>(this PR — new skill)"]
writing["✍️ scientific-writing"]
lit["📚 literature-review"]
schematics["🎨 scientific-schematics"]

View File

@@ -80,9 +80,9 @@ flowchart LR
accTitle: Three-Phase Documentation Workflow
accDescr: Phase 1 Mermaid in markdown is always required and is the source of truth. Phases 2 and 3 are optional downstream conversions for polished output.
p1["📄 Phase 1\nMermaid in Markdown\n(ALWAYS — source of truth)"]
p2["🐍 Phase 2\nPython Generated\n(optional — data charts)"]
p3["🎨 Phase 3\nAI Generated Visuals\n(optional — polish)"]
p1["📄 Phase 1<br/>Mermaid in Markdown<br/>(ALWAYS — source of truth)"]
p2["🐍 Phase 2<br/>Python Generated<br/>(optional — data charts)"]
p3["🎨 Phase 3<br/>AI Generated Visuals<br/>(optional — polish)"]
out["📊 Final Deliverable"]
p1 --> out

View File

@@ -25,11 +25,11 @@ flowchart TD
accTitle: CRISPR Editing Experimental Workflow
accDescr: Five-stage experimental pipeline from gRNA design through data analysis, with quality checkpoints between each stage.
design["🧬 Stage 1\ngRNA Design\n(CRISPRscan + Cas-OFFinder)"]
synth["⚙️ Stage 2\nOligo Synthesis\n& Annealing"]
transfect["🔬 Stage 3\nCell Transfection\n(Lipofectamine 3000)"]
screen["🧪 Stage 4\nPrimary Screen\n(T7E1 assay)"]
ngs["📊 Stage 5\nNGS Validation\n(150 bp PE reads)"]
design["🧬 Stage 1<br/>gRNA Design<br/>(CRISPRscan + Cas-OFFinder)"]
synth["⚙️ Stage 2<br/>Oligo Synthesis<br/>& Annealing"]
transfect["🔬 Stage 3<br/>Cell Transfection<br/>(Lipofectamine 3000)"]
screen["🧪 Stage 4<br/>Primary Screen<br/>(T7E1 assay)"]
ngs["📊 Stage 5<br/>NGS Validation<br/>(150 bp PE reads)"]
qc1{GC 40-65%?}
qc2{Yield ≥ 2 µg?}