Replies: 1 comment 3 replies
-
Thanks for the note, and sorry about this hassle. (Looks like it's the same issue as in #363 ; this was originally an issue on the Manning website but was fixed there; the issue still persists on the O'Reilly platform). I just pinged the publisher to let them know to also check the epub. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
small error in the EPUB I found from typing it out
preprocessed = re.split(r'([,.:;?_!"()\']|--|\\s)', text)
but it should be one slash for a regex space '\s' - The github repo and the PDF have the right version of this:
preprocessed = re.split(r'([,.:;?_!"()\']|--|\s)', text)
It's in several places - maybe it's a problem with converting to EPUB?


Beta Was this translation helpful? Give feedback.
All reactions