sanitizer.go

1package htmlsanitizer
2
3type Sanitizer interface {
4	SanitizeBytes(html []byte) []byte
5}