We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I've made a PHP wrapper to read Epub with Monocle and in an Epub the components looks like that :
Author-BookTitle-split-00X
That cause this problem :
var matcher = new RegExp('^'+decodeURIComponent(cmptId)+"(#(.+)|$)");
SyntaxError: invalid range in character class http://localhost/monocle/resources/monocle/scripts/monocore.js Line 2952
The dash (-) is interpreted as a part of the regexp.
I know I can replace all dashes by other characters but I think you should know.
Thanks for Monocle :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I've made a PHP wrapper to read Epub with Monocle and in an Epub the components looks like that :
Author-BookTitle-split-00X
That cause this problem :
var matcher = new RegExp('^'+decodeURIComponent(cmptId)+"(#(.+)|$)");
SyntaxError: invalid range in character class
http://localhost/monocle/resources/monocle/scripts/monocore.js
Line 2952
The dash (-) is interpreted as a part of the regexp.
I know I can replace all dashes by other characters but I think you should know.
Thanks for Monocle :)
The text was updated successfully, but these errors were encountered: