A webmail client. Forked from https://git.sr.ht/~migadu/alps
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

19 行
320 B

  1. package koushinbase
  2. import (
  3. "github.com/microcosm-cc/bluemonday"
  4. )
  5. func sanitizeHTML(b []byte) []byte {
  6. p := bluemonday.UGCPolicy()
  7. // TODO: be more strict
  8. p.AllowElements("style")
  9. p.AllowAttrs("style")
  10. p.AddTargetBlankToFullyQualifiedLinks(true)
  11. p.RequireNoFollowOnLinks(true)
  12. return p.SanitizeBytes(b)
  13. }