- If I need to include search either in the “header” or all notes, I need to include the following html snippets (but of course minus the liquid if-else statement)
- it is using Lunrjs and capable of full text search – since it is indexed, it is also very fast
- for Jekyll-Garden it is located in
_includes\Feed.html
- Minimal Mistakes also offer Lunrjs search (alongside with other options such as Algolia and Google)
html<!-- search bar -->
<div class="block">
<input class="input is-medium" type="text" placeholder="Search notes.." id="search-input" autocomplete="off">
<div id="search-results" class="search-results"></div>
</div>
<script type="text/javascript" src="/digital-garden/assets/js/vendor/lunr.min.js"></script>
<script src="/digital-garden/assets/js/Search.js"></script>
Metadata
- topic:: 00 Coding00 Coding
#MOC / for programming language, coding guide and libraries focusing on data analytics and html/css
- related::
- updated:: 2022-07-12 Private or Broken Links
The page you're looking for is either not available or private!
- reviewed:: 2022-07-12 Private or Broken Links
The page you're looking for is either not available or private!
- #Reference