Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishrb committed Oct 31, 2024
1 parent b16c697 commit efd781f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit efd781f

Please sign in to comment.