Quote:
Originally Posted by tomsem
But one of the news sources I picked at random ('Bill O'Reilly' in fact..) generated an azw file where several of the articles truncate text at the bottom of a page. When the 5way cursor is moved into the text, it goes into 'table pan' mode. I unpacked the azw and sure enough, the article text is all packed inside a <td> tag. The table cell has too much text to fit on one page, even at the smallest text size.
|
Most folks building recipes go out of their way to eliminate the tables so the Bill O'Reilly recipe should be the rare exception and not the rule.
Adding the conversion_options after remove_javascript = True removed the tables and the recipe should work fine for you after this customization.
Code:
remove_javascript = True
conversion_options = {
'linearize_tables' : True
}
Moved to recipe sub-forum in case my advice is off the mark.