Quote:
Originally Posted by Starson17
Quote:
Originally Posted by CaptainJSK
1) I would like them to be displayed in reverse order (i.e., older entries first) so that I can catch up on things I've missed
|
Search this thread for "reverse" and look at my GoComics recipe. It does a reverse of date order for comic strips with:
current_articles.reverse()
It requires that you build the article feed yourself before reversing it.
|
This is an old question, but I only recently learned that there's another solution. There's a built-in option to reverse article order. I've never seen it used in a recipe or documented, but found it while perusing Calibre's code. It's:
Code:
reverse_article_order = True
Add this to a recipe and the article order is switched to oldest first. I've been using it in comics recipes.