Vuepress: support full text search

Created on 26 Apr 2018  路  3Comments  路  Source: vuejs/vuepress

currently search only title?

All 3 comments

Current SearchBox:

const matches = item => (
  item.title &&
  item.title.toLowerCase().indexOf(query) > -1
)

The $page value only store { path, title, frontmatter } now. The full text are stored in components.

Maybe the AlgoliaSearchBox will help.

Use Algolia or build your own theme if you need full text search.

Duplicate of #68

Was this page helpful?
0 / 5 - 0 ratings