From 1ebf25e4cb7cac7107eed471516a56cb793dd453 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Tue, 14 May 2024 09:51:39 +0000 Subject: [PATCH] Revert changes in GraphView.save() --- src/graph/GraphView.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/graph/GraphView.cpp b/src/graph/GraphView.cpp index 55fe69678..0bc918995 100644 --- a/src/graph/GraphView.cpp +++ b/src/graph/GraphView.cpp @@ -83,7 +83,6 @@ void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProd } fmt::print(fp.get(), - "```mermaid\n" "%%{{init: {{'flowchart': {{ 'curve': 'monotoneY'}}, " "'fontFamily': 'Verdana' }} }}%%\nflowchart TB\n\n"); @@ -205,7 +204,6 @@ void Aidge::GraphView::save(const std::string& path, bool verbose, bool showProd fmt::print(fp.get(), "classDef producerCls_rootCls stroke:#f00,fill:#ccf\n"); fmt::print(fp.get(), "classDef genericCls_rootCls stroke:#f00,fill:#f9f9ff,stroke-width:1px,stroke-dasharray: 5 5\n"); fmt::print(fp.get(), "classDef metaCls_rootCls stroke:#f00,stroke-width:5px\n"); - fmt::print(fp.get(), "```\n"); fmt::print(fp.get(), "\n"); } -- GitLab