﻿#!/usr/bin/env python
# vim:fileencoding=utf-8

from calibre.web.feeds.news import BasicNewsRecipe

class NovayaGazta(BasicNewsRecipe):
    title = u'Novaya Gazeta'
    __author__ = 'muwa (with fixes by bugmen00t)'
    oldest_article = 7
    max_articles_per_feed = 100
    no_stylesheets = True
    conversion_options = {'linearize_tables': True}
    remove_attributes = ['style']
    language = 'ru'

    feeds = [(u'Articles', u'https://novayagazeta.ru/feed/rss')]
