Escape Html Golang
unescaped := `<script>alert(123);</script>`
escaped := html.EscapeString(unescaped)
VasteMonde
unescaped := `<script>alert(123);</script>`
escaped := html.EscapeString(unescaped)