Publish HTML quickly. https://html.house
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

11 líneas
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. }