Still doesn't work. Here's the full recipe:
Code:
from calibre.web.feeds.news import BasicNewsRecipe
class FanFiction(BasicNewsRecipe):
title = u'FanFiction'
oldest_article = 10000
max_articles_per_feed = 10
use_embedded_content = False
remove_javascript = True
no_stylesheets = True
keep_only_tags = [dict(name='div', attrs={'id':'storytext'})]
html2epub = 'base_font_size="14pt"'
feeds = [(u'Spiral', u'http://www.fanfiction.net/atom/l/1702/10/0/1/1/0/9281/9284/2/0/')]
Did I do something wrong?