From f9d41562191f0246b208b0deeb1546e0c0e1300e Mon Sep 17 00:00:00 2001 From: bynect <68197565+bynect@users.noreply.github.com> Date: Wed, 25 Dec 2024 22:59:59 +0100 Subject: [PATCH] Fix format --- pkg/parser.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/parser.go b/pkg/parser.go index d27a4b3..4d696f0 100644 --- a/pkg/parser.go +++ b/pkg/parser.go @@ -231,14 +231,14 @@ func createBlockquoteStart(alert string) (string, error) { } type mermaid struct { - Content string - Theme string + Content string + Theme string } func renderMermaid(content string, theme string) (string, error) { m := mermaid{ - Content: content, - Theme: theme, + Content: content, + Theme: theme, } lp := path.Join("templates/mermaid/mermaid.html") tmpl, err := template.ParseFS(defaults.Templates, lp)