Quote:
Originally Posted by Amalthia
Yeah, I was trying to avoid that option.  I have over 150 stories I'd have to edit the HTML in order to fix the spacing issue. Currently the EPUB and Mobi do not display the same problem...
|
Just get a good editor and run a correct regexp (regular expression search and replace):
1) For moving the punctuation inside the emphasis:
search = (</em>)([.,!?;:]+)
replace = $2$1
2) For moving the punctuation outside the emphasis:
search = ([.,!?;:]+)(</em>)
replace = $2$1