saberland/saber
The issue has been closed
A plugin for local search #138
egoist posted onGitHub
<!-- Please don't delete this template or we'll close your issue -->
<!-- Before creating an issue please make sure you are using the latest version of Saber. -->
Feature request
<!-- Please ask questions via following several ways. -->
<!-- https://chat.saber.land/ -->
<!-- https://stackoverflow.com/questions/ask?tags=saberjs -->
What problem does this feature solve?
For searching in documentation sites / blogs.
What does the proposed API look like?
const search = async keyword => {
const data = await import('#cache/search.json')
return fuzzySearch(keyword)
}
This plugin doesn't need to include a UI component, leaving that to users / theme authors.
How should this be implemented in your opinion?
Similar to https://github.com/christian-fei/Simple-Jekyll-Search
Are you willing to work on this yourself?
Yes.