collocatordb: HACK: remove words with "quot" from json results
diff --git a/collocatordb.cc b/collocatordb.cc
index 4d327f1..ba6c138 100644
--- a/collocatordb.cc
+++ b/collocatordb.cc
@@ -674,6 +674,7 @@
   s << "[";
   bool first = true;
   for (Collocator c : collocators) {
+    if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue;
     if (i++ > 200)
       break;
     if(!first)