I read in Calibre's documentation that the preprocess_regexps should look like that:
Code:
preprocess_regexps = [
(re.compile(r'<!--Article ends here-->.*</body>', re.DOTALL|re.IGNORECASE),
lambda match: '</body>'),
]
Unfortunately, I have no idea how to progreed in order replace all „ and “ by ". Could one of the pros here give me, please, a hint how to do this?