Skip to content

Conversation

@msotnikov
Copy link

Add the field value into pipeline function (token, i, tokens, field)

Inspired https://lunrjs.com/guides/customising.html#pipeline-functions

Expample usage:

  const skipField = function (fieldName, fn) {
    return function (token, i, tokens, field) {
      if (field === fieldName) {
        return token
      }

      return fn(token, i, tokens)
    }
  }
const selectiveStopWordfilter = skipField('fieldNameToSkip', elasticlunr.en.stopWordFilter)
  builder.pipeline.add(
    elasticlunr.trimmer,
    selectiveStopWordfilter,
)

@msotnikov msotnikov mentioned this pull request Aug 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant