Publish HTML quickly. https://html.house
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

11 行
190 B

  1. package htmlhouse
  2. func passesPublicFilter(app *app, html string) bool {
  3. if app.cfg.BlacklistTerms == "" {
  4. return true
  5. }
  6. spam := app.cfg.BlacklistReg.MatchString(html)
  7. return !spam
  8. }