claudioc / jingo

Node.js based Wiki
MIT License
1.02k stars 184 forks source link

Support case insensitive document title search. #43

Closed abrander closed 10 years ago

abrander commented 10 years ago

The current master only supports case sensitive filename search. This PR fixes that by comparing after toLowerCase().

toLowerCase() will propably not solve this for the complete UTF-8 space, but it's much better than current case sensitive matching.

claudioc commented 10 years ago

:+1:

I just need some time to test it locally to see if there are some drawbacks.