Skip to content

Commit

Permalink
🐛 Fix Mermaid Parsing Error on Network Page
Browse files Browse the repository at this point in the history
This removes the improper formatted numbering on the data_flow_diagram on the network page - restoring content to the rendering.
KagemniKarimu committed Jan 11, 2025
1 parent a9ba886 commit 72106ca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions livebook/understanding_chainbase_network.livemd
Original file line number Diff line number Diff line change
@@ -135,26 +135,26 @@ data_flow_section = Kino.Markdown.new("""

data_flow_diagram = Kino.Mermaid.new("""
graph TB
User["6. User/Application"]
Raw["1. Raw Blockchain Data"]
User["6 - User/Application"]
Raw["1 - Raw Blockchain Data"]
subgraph Chain["Chainbase Network"]
subgraph Process["Data Processing"]
Access["2. Data Access Layer"]
Proc["3. Co-processor Layer"]
Exec["4. Execution Layer"]
Access["2 - Data Access Layer"]
Proc["3 - Co-processor Layer"]
Exec["4 - Execution Layer"]
Access --> Proc
Proc --> |"Manuscript"| Exec
Exec --> |"CVM"| Out
end
subgraph Security["Security & Consensus"]
Val["4a. Validators"]
Val["4a - Validators"]
Val -.-> Exec
end
Out{{"5. AI-Ready Data"}}
Out{{"5 - AI-Ready Data"}}
end
Raw --> Access

0 comments on commit 72106ca

Please sign in to comment.