Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 592 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 592 Bytes

Lunr search for docsify.js

Search plugin for docsify.js which uses lunr.

Usage

For use in browsers with script tags, download search.js and include the lunr.js CDN like this:

<script>
  window.$docsify = {
    // complete configuration parameters
    // for more options see https://docsify.js.org/#/plugins?id=full-text-search
    search: {
      maxAge: 86400000,
      namespace: 'website-1',
      depth: 1,
    }
  }
</script>
<script src="//unpkg.com/lunr/lunr.js"></script>
<script src="search.js"></script>