From 1baada39f4ed78895944d0a9137c32d4f420f9c4 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Thu, 14 Apr 2022 13:56:44 +0200 Subject: [PATCH] Search: Remove raw and gif from stopwords.txt #590 #1994 #2079 #2169 --- pkg/txt/resources/stopwords.txt | 2 -- pkg/txt/stopwords.go | 2 -- 2 files changed, 4 deletions(-) diff --git a/pkg/txt/resources/stopwords.txt b/pkg/txt/resources/stopwords.txt index 20f87f7d9..0e253e77a 100644 --- a/pkg/txt/resources/stopwords.txt +++ b/pkg/txt/resources/stopwords.txt @@ -63,14 +63,12 @@ xyz jpg jpeg png -gif tif tiff xmp xml yml yaml -raw zip tar txt diff --git a/pkg/txt/stopwords.go b/pkg/txt/stopwords.go index 083d12a34..4fd50e190 100644 --- a/pkg/txt/stopwords.go +++ b/pkg/txt/stopwords.go @@ -68,14 +68,12 @@ var StopWords = map[string]bool{ "jpg": true, "jpeg": true, "png": true, - "gif": true, "tif": true, "tiff": true, "xmp": true, "xml": true, "yml": true, "yaml": true, - "raw": true, "zip": true, "tar": true, "txt": true,