obsidian-omnisearch
obsidian-omnisearch copied to clipboard
[BUG] The header is not found if there was the same word before it.
Problem description: Header cannot be found if there was the same word before it anywhere.
Here is an example where you won't be able to find all headers except the last one (random):
The load balancers are able to load balance the requests between multiple instances of your programs.
Each service has a load-balancer, even if there is only one server to forward traffic to.
c := cron.New()
c.AddFunc("0 30 * * * *", func() { fmt.Println("Every hour on the half hour") })
c.AddFunc("@hourly", func() { fmt.Println("Every hour") })
c.AddFunc("@every 1h30m", func() { fmt.Println("Every hour thirty") })
c.Start()
c.Stop() // Stop the scheduler (does not stop any jobs already running).
// Funcs are invoked in their own goroutine, asynchronously.
// Funcs may also be added to a running Cron
c.AddFunc("@daily", func() { fmt.Println("Every day") })
// Inspect the cron job entries' next and previous run times.
inspect(c.Entries())
# requests
# scheduler
# balance
# forward
# random
- Omnisearch version: 1.27.3
- Obsidian version: 1.9.14
- Operating system: MacOS 15.7.1
- Number of indexed documents in your vault (approx.):