The Economist seems to have added an annoying "related items" in their print view. This is annoying since it is usually right in the center of an article. I've amended the recipe with the following tag, which removes the related items div. I suggest this gets added into the main distribution recipe, as I can't imagine it's useful to have those links there.
remove_tags = [dict(name=['script', 'noscript', 'title', 'iframe', 'cf_floatingcontent']),
dict(attrs={'class':['dblClkTrk', 'ec-article-info']}),
dict(name='div', attrs={'class':'related-items'})]
|