| ▲ | gingersnap 7 hours ago | |
Talking about search on a static docs site, has anyone tried a static pre-generated search like https://lunrjs.com/ ? | ||
| ▲ | captn3m0 3 hours ago | parent | next [-] | |
We use at endoflife.date, and are fairly happy. We had to add a workaround to get some search terms working (because of how it does stemming, searching for BSD wouldn't show openbsd earlier): https://github.com/endoflife-date/endoflife.date/issues/4924), but it is still not 100% perfect: searching for fusion still doesn't get you coldfusion. | ||
| ▲ | nicbou 7 hours ago | parent | prev | next [-] | |
I use Lunr on allaboutberlin.com. It's simple and effective, but searching the whole content would have required loading more files than I was comfortable with. Therefore it only searches titles and descriptions. There are probably workarounds, but it's the only limitation I can think of. Otherwise Lunr just works. | ||
| ▲ | jorams 7 hours ago | parent | prev | next [-] | |
Basically every Elixir package's docs include search based on Lunr, as it's included by default by ExDoc[1]. It's quite good. | ||
| ▲ | fanf2 6 hours ago | parent | prev | next [-] | |
I use https://pagefind.app/ for search on my website. It’s really easy to add to a static site. | ||
| ▲ | victorbjorklund 4 hours ago | parent | prev | next [-] | |
I been using this project (seems to be abandoned now but still works) https://stork-search.net/ Works great. | ||
| ▲ | butz 6 hours ago | parent | prev | next [-] | |
I think https://develop.kde.org/docs/ is using lunrjs for search, but downloading and parsing almost 2MB file of search data creates some hiccups on website during load. | ||
| ▲ | phcreery 4 hours ago | parent | prev [-] | |
vitepress seems to use https://github.com/lucaong/minisearch/ and the vitepress docs I have built and used are good. | ||