// based on https://victoria.dev/blog/add-search-to-hugo-static-sites-with-lunr/ function displayResults (results, store) { const searchResults = document.getElementById('results'); if (results.length) { let resultList = ''; for (const n in results) { const item = store[results[n].ref]; resultList += '
  • ' + item.title + '
  • ' if (item.description) resultList += '

    ' + item.description + '

    ' else resultList += '

    ' + item.content.substring(0, 150) + '...

    ' } searchResults.innerHTML = resultList; } else { searchResults.innerHTML = 'No results found.'; } } const params = new URLSearchParams(window.location.search); const query = params.get('query'); if (query) { document.getElementById('search-query').setAttribute('value', query); const idx = lunr(function () { this.ref('id') this.field('title', { boost: 15 }) this.field('tags') this.field('content', { boost: 10 }) for (const key in window.store) { this.add({ id: key, title: window.store[key].title, tags: window.store[key].tags, content: window.store[key].content }) } }) const results = idx.search(query); displayResults(results, window.store) }