What is the most popular Hugo search tool?

What is the most popular Hugo search tool?

I asked ChatGPT “What is the most popular Hugo search tool?” and the answer given was Lunr.js

Here’s the full response:

The most popular search tool for Hugo websites is Lunr.js. It’s a powerful, client-side search engine that is often used with Hugo because of its flexibility, ease of integration, and performance. Lunr.js is a JavaScript-based search library that allows you to implement fast, full-text search capabilities directly in the browser without needing a backend server.

[Read More]

2024 08 20

Can I get some feedback?

I asked ChatGPT for suggestions on how to implement comments on a Hugo static website hosted on GitHub Pages. This led me to implementing Utterances. Can I get some feedback? Let’s hope so!

      <div id="comments">
        <h2>Comments</h2>
        <script src="https://utteranc.es/client.js"
                repo="spr12ian/spr12ian.github.io"
                issue-term="pathname"
                theme="preferred-color-scheme"
                crossorigin="anonymous"
                async>
        </script>
      </div>

Further Reading

ChatGPT Github Pages Hugo Utterances