From 0dd9081215dabec904170eb0bec652777c6bb690 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Tue, 5 Jul 2022 11:30:06 +0200 Subject: FSM: Set default mermaid graph generation scale to 4 --- internal/fsm/fsm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal') diff --git a/internal/fsm/fsm.go b/internal/fsm/fsm.go index b77ea7e..2042977 100644 --- a/internal/fsm/fsm.go +++ b/internal/fsm/fsm.go @@ -162,7 +162,7 @@ func (fsm *FSM) writeGraph() { f.WriteString(graph) f.Close() - cmd := exec.Command("mmdc", "-i", graphFile, "-o", graphImgFile) + cmd := exec.Command("mmdc", "-i", graphFile, "-o", graphImgFile, "--scale", "4") cmd.Start() } -- cgit v1.2.3