metalsmith-lunr icon indicating copy to clipboard operation
metalsmith-lunr copied to clipboard

Metalsmith plugin to integrate Lunr.js search engine.

Results 7 metalsmith-lunr issues
Sort by recently updated
recently updated
newest added

This project was using a very old version of lunr, the structure of the generated index file had changed significantly. Updated plugin to use new API. Updated tests to expect...

I tried using this plugin with v2.0.0 of Lunr and I am getting this error : ![my_static_site_ _blog_-_google_chrome_2017-04-10_10-38-22](https://cloud.githubusercontent.com/assets/3018441/24868790/2689fb64-1ddf-11e7-820c-b7b51042a7ed.png) Once I switched back to an older version : 0.5.12. It seemed...

I'm not sure if this is a bug for you, or for Lunr, but seeing as it has to do with the index, and this is what I'm using to...

Ref gives filename by default, can i add more fields like "ref"

This is my lunr snippet from the build file: ``` .use(lunr({ preprocess: function(content) { // Replace all occurrences of __title__ with the current file's title metadata. return content.replace(/__title__/g, this.title); }...