Quote:
Originally Posted by TonytheBookworm
it appears the content is within a table and the user is forced to pan. Maybe someone can help me figure this issue out. Thanks
|
I remove all tables in recipes. They tend to cause trouble.
You can use:
conversion_options = {'linearize_tables' : True}
or something like:
Code:
def postprocess_html(self, soup, first_fetch):
for t in soup.findAll(['table', 'tr', 'td']):
t.name = 'div'