diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-07-05 11:30:06 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-07-05 11:30:06 +0200 |
| commit | 0dd9081215dabec904170eb0bec652777c6bb690 (patch) | |
| tree | 6cf1667c18bbd0b87725daffc6a5d140fcf30a63 | |
| parent | 8ac62e74679efba92154834d2ebbd259d71edbe0 (diff) | |
FSM: Set default mermaid graph generation scale to 4
| -rw-r--r-- | internal/fsm/fsm.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() } |
