3
0
Files
corteza/pkg/locale/input.go
Tomaž Jerman d95eec9973 Make resource translation sanitization looser
Reuse record value configuration to allow rich text from
content page blocks.
2022-03-14 15:26:54 +01:00

10 lines
148 B
Go

package locale
import (
"github.com/cortezaproject/corteza-server/pkg/xss"
)
func SanitizeMessage(in string) string {
return xss.RichText(in)
}