mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
32 lines
1.1 KiB
Lua
32 lines
1.1 KiB
Lua
return {--do NOT change this line
|
|
|
|
--HELP:
|
|
-- use syntax: {"http://your-url.com", limit=max_number_of_items_to_be_created, download_full_article=true/false},
|
|
|
|
-- remember to put coma at the end of each line!
|
|
|
|
-- you can also edit this file in external text editor. Config file is located under:
|
|
-- <your_download_directory>/feed_config.lua
|
|
-- default: <koreader_dir>/news/feed_config.lua
|
|
|
|
|
|
-- DETAILS:
|
|
-- set 'limit' to "0" means no limit.
|
|
|
|
-- 'download_full_article=true' - means download full article (may not always work correctly)
|
|
-- 'download_full_article=false' - means use only feed description to create feeds (usually only beginning of the article)
|
|
-- default value is 'true' (if no 'download_full_article' entry)
|
|
|
|
-- comment out line ("--" at line start) to stop downloading source
|
|
|
|
|
|
-- LIST YOUR FEEDS HERE:
|
|
|
|
{ "http://feeds.reuters.com/Reuters/worldNews?format=xml", limit = 2, download_full_article=true},
|
|
|
|
{ "https://www.pcworld.com/index.rss", limit = 7 , download_full_article=false},
|
|
|
|
-- { "http://www.football.co.uk/international/rss.xml", limit = 2},
|
|
|
|
}--do NOT change this line
|