fix: display german umlauts correctly in emails
parent
5bd3403928
commit
dfc372c644
|
@ -2,6 +2,8 @@ package escaper
|
||||||
|
|
||||||
import "strings"
|
import "strings"
|
||||||
|
|
||||||
|
// https://www.htmlsymbol.com/html-entities/
|
||||||
|
|
||||||
var htmlEntitesEscaper = strings.NewReplacer(
|
var htmlEntitesEscaper = strings.NewReplacer(
|
||||||
`Ä`, "Ä",
|
`Ä`, "Ä",
|
||||||
`ä`, "ä",
|
`ä`, "ä",
|
||||||
|
|
Loading…
Reference in New Issue