Publish HTML quickly. https://html.house
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

11 righe
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. }