mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-21 22:40:44 -04:00
24 lines
584 B
JavaScript
24 lines
584 B
JavaScript
/*
|
|
* Hyphenation
|
|
* Copyright 2008 Kovid Goyal
|
|
* License: GNU GPL v3
|
|
*/
|
|
|
|
function do_hyphenation(lang) {
|
|
Hyphenator.config(
|
|
{
|
|
'minwordlength' : 6,
|
|
//'hyphenchar' : '|',
|
|
'displaytogglebox' : false,
|
|
'remoteloading' : false,
|
|
'doframes' : true,
|
|
'defaultlanguage' : 'en',
|
|
'storagetype' : 'session',
|
|
'onerrorhandler' : function (e) {
|
|
window.py_bridge.debug(e);
|
|
}
|
|
});
|
|
Hyphenator.hyphenate(document.body, lang);
|
|
}
|
|
|