From 69351afb7d243c32de56bc2607500cc703d7afec Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <olivier.bichler@cea.fr>
Date: Sun, 24 Mar 2024 20:34:34 +0100
Subject: [PATCH] Minor Mermaid fix for older versions

---
 src/graph/GraphView.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp
index 005a7e679..9ae6c6450 100644
--- a/src/graph/GraphView.cpp
+++ b/src/graph/GraphView.cpp
@@ -151,7 +151,7 @@ void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProd
     size_t inputIdx = 0;
     for (auto input : mInputNodes) {
       if (input.first != nullptr) {
-        fmt::print(fp.get(), "input{}((in#{})):::inputCls--->|&rarr;{}|{}_{}\n", inputIdx, inputIdx,
+        fmt::print(fp.get(), "input{}((in#{})):::inputCls--->|\"&rarr;{}\"|{}_{}\n", inputIdx, inputIdx,
                     input.second, input.first->type(), namePtrTable.at(input.first));
       }
       else {
-- 
GitLab