Liam Bigelow
Liam Bigelow
Some new thoughts on this; I think I'm going to try get metadata into the index in a way that it can be queried as part of a search. This...
Filenames are currently unused apart from building URLs, but the URLs are present in the result fragments, so what you're after would still be solved by #532, as it is...
Sorry to leave you hanging! Had to deal with some tasks that were put aside while working on the 1.0 release. Coming back around to new PRs and issues in...
Hi @sanjaiyan-dev — on Chrome (and others?) an input with `type="search"` shows a clear button in the input. Since the Pagefind UIs have their own implementations of this, it would...
I think the type search is good — we just need to normalize the styling. At a glance, https://stackoverflow.com/a/77190241 seems good, but will need to test it across browsers to...
This was considered, but didn't win out over the JavaScript implementation for now. Both for browser compatibility reasons, and because the JavaScript implementation provides some more benefits both now and...
👋 Hey @holyjak This is definitely something that could be exposed! 🙂 One note though — the 1.0.3 release does have a performance issue with the API indexing files. If...
This would be a useful setting! I can add this when I'm next in the area, but in the meantime you could achieve this using the [processResult hook](https://pagefind.app/docs/ui/#process-result) of the...
Hey @olets 👋 I don't think I'd want it as a default personally, but it does sound like a good fit for an option. It's come up once before, and...
Workaround from discussion: ```js new PagefindUI({ element: "#search", showSubResults: true, showImages: true, processResult: function (result) { if (result?.meta?.image) { let resultBase = new URL(result.url, window.location); let remappedImage = new URL(result.meta.image,...