View Single Post
Old 10-12-2010, 07:30 PM   #2
TonytheBookworm
Addict
TonytheBookworm is on a distinguished road
 
TonytheBookworm's Avatar
 
Posts: 264
Karma: 62
Join Date: May 2010
Device: kindle 2, kindle 3, Kindle fire
Quote:
Originally Posted by esurfer View Post
Hi,
here is a recipe for Yazhao Zhoukan. there is a small problem with text formatting found in .mobi files. basically the text are aligned to center instead of to the left.
would appreciate if someone could help fix this for me.
thanks.
Just a guess you got inline style sheets going on with that site.
Try adding this to your recipe and see what the results are.
Spoiler:

Code:
 def preprocess_html(self, soup):
        for item in soup.findAll(attrs={'style':True}):
            del item['style']
        return soup
TonytheBookworm is offline   Reply With Quote