10 lines
148 B
Go
10 lines
148 B
Go
package locale
|
|
|
|
import (
|
|
"github.com/cortezaproject/corteza/server/pkg/xss"
|
|
)
|
|
|
|
func SanitizeMessage(in string) string {
|
|
return xss.RichText(in)
|
|
}
|