-
Hello,
I can't figure out how to use lunr.de with requirejs. I tried :
CASE 1
``` javascript
paths: {
lunr : 'path/to/lunr'
lunrde : 'path/to/lunr.de'
},
shim {
lunr: {
…
-
Hello.
Is it possible to support non-Latin characters sets, at least for 1-to-1 matching? Cyrillic example:
``` javascript
var index = lunr(function () {
this.field('text');
});
index.add({ id: 1…
-
Hi,
I was looking for a full text index that works on both the browser (offline) and Couchdb for a while. My actual setup is to use a PostgreSQL cache with Fulltext index on the server and a primit…
-
is this usable? how?
-
I'm asking because you said we could ask for support for other languages.
There is info on this here: https://github.com/olivernn/lunr.js/issues/16
And implementations for lunr here: https://github.c…
-
It would be nice to be able to pass in some config values instead of having to manually remove the `stopWordFilter` and `stemmer` from the pipeline.