1) With JavaScript search, are the words generated in zoom_index.js file limited to 34 characters?
2) If yes, is there any way to influence this from Help&Manual, apart from using and configuring the standalone version of Zoom Indexer?
With respect to the background of these questions, my problem is that text like this:
ConvertingToSomething.setCloseObjectsAfterRun();
becomes unsearchable with JavaScript if you search the phrase "setCloseObjectsAfterRun". The cause apparently is that longer strings (like the one above) are chopped to 34 characters in the zoom_index.js file:
- Code: Select all
"convertingtosomething.setcloseobje 470 18 20",
I've also tried to customize search not to treat dots as "Word-joining characters", here are my settings:
But this does not seem to have any effect -- text is still chopped in the zoom_index.js file, and I also noticed this line remained unchanged in settings.js:
- Code: Select all
var WordJoinChars = ".-_'";
Thank you for any help!