1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00
Files
go-inbucket/sanitize/html.go
2018-01-06 16:45:12 -08:00

10 lines
191 B
Go

package sanitize
import "github.com/microcosm-cc/bluemonday"
func HTML(html string) (output string, err error) {
policy := bluemonday.UGCPolicy()
output = policy.Sanitize(html)
return
}