small fix

This commit is contained in:
Christoph Herb
2024-10-31 18:38:58 +01:00
parent b16c697c83
commit efd781f2b9

View File

@@ -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,
}