diff --git a/pkg/parser.go b/pkg/parser.go index fdf7481..fb4a44e 100644 --- a/pkg/parser.go +++ b/pkg/parser.go @@ -208,13 +208,13 @@ func createBlockquoteStart(alert string) (string, error) { return tpl.String(), nil } -type Mermaid struct { +type mermaid struct { Content string Darkmode bool } func renderMermaid(content string, darkmode bool) (string, error) { - m := Mermaid{ + m := mermaid{ Content: content, Darkmode: darkmode, }