Created
January 19, 2016 16:49
-
-
Save olivernn/7cd496f8654a0246c53c to your computer and use it in GitHub Desktop.
Revisions
-
olivernn created this gist
Jan 19, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ lunr.contractionTrimmer = function (token) { return token.replace(/('ve|n't|'d|'ll|'ve|'s|'re)$/, "") } lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'contractionTrimmer') var englishContractions = function (idx) { idx.pipeline.after(lunr.trimmer, lunr.contractionTrimmer) }