Update livemint.recipe

This commit is contained in:
unkn0w7n 2023-07-14 12:13:24 +05:30
parent e5222ccdde
commit 5976fdd26d

View File

@ -24,9 +24,9 @@ class LiveMint(BasicNewsRecipe):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
BasicNewsRecipe.__init__(self, *args, **kwargs) BasicNewsRecipe.__init__(self, *args, **kwargs)
if self.output_profile.short_name.startswith('kindle'): if self.output_profile.short_name.startswith('kindle'):
self.title = 'Mint ' + date.today().strftime('%b %d, %Y') self.title = 'Mint | ' + date.today().strftime('%b %d, %Y')
if is_saturday: if is_saturday:
self.title = 'Mint Lounge ' + date.today().strftime('%b %d, %Y') self.title = 'Mint Lounge | ' + date.today().strftime('%b %d, %Y')
if is_saturday: if is_saturday:
@ -87,18 +87,18 @@ class LiveMint(BasicNewsRecipe):
h2 {font-size:normal !important;} h2 {font-size:normal !important;}
.author-widget {font-size:small; font-style:italic; color:#404040;} .author-widget {font-size:small; font-style:italic; color:#404040;}
em, blockquote {color:#202020;} em, blockquote {color:#202020;}
.moreAbout, .articleInfo {font-size:small;} .moreAbout, .articleInfo, .metaData, .psTopicsHeading, .topicsTag {font-size:small;}
''' '''
keep_only_tags = [ keep_only_tags = [
dict(name='article', attrs={'id':lambda x: x and x.startswith('article_')}), dict(name='article', attrs={'id':lambda x: x and x.startswith(('article_', 'box_'))}),
classes('contentSec') classes('contentSec')
] ]
remove_tags = [ remove_tags = [
classes( classes(
'trendingSimilarHeight moreNews mobAppDownload label msgError msgOk taboolaHeight' 'trendingSimilarHeight moreNews mobAppDownload label msgError msgOk taboolaHeight'
' socialHolder imgbig disclamerText disqus-comment-count openinApp2 lastAdSlot' ' socialHolder imgbig disclamerText disqus-comment-count openinApp2 lastAdSlot'
' datePublish sepStory premiumSlider' ' datePublish sepStory premiumSlider moreStory'
) )
] ]