diff --git a/README.md b/README.md index 143676f..4b7b3ee 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,9 @@ base_directory = '/home//rss' # Articles older than max_age (days) will be deleted and not be added. max_age = 30 +# Date and time format as strftime, to be included in the articles. +datetime_format = '%d.%m.%Y %H:%M' + # Postprocessing command of the articles. The article is written to stdin in HTML format and read from stdout. postprocessor = 'pandoc -f html -t markdown_strict-raw_html --reference-links --reference-location=document' @@ -77,9 +80,6 @@ fileending = 'md' # E.g. if you wan't to skip news about RSS explicitly, add '(\W|^)rss(\W|$)'. filters = [] -# Date and time format as strftime to be included in the articles. -datetime_format = '%d.%m.%Y %H:%M' - # Feeds # The category can be empty (''). The feed fill then be stored in the base_directory. # The category can also be a path, which will result in subdirectories (e.g. 'technology/hardware'). diff --git a/config.toml b/config.toml index 7d3de98..f7780c6 100644 --- a/config.toml +++ b/config.toml @@ -4,7 +4,7 @@ base_directory = '/home//rss' # Articles older than max_age (days) will be deleted and not be added. max_age = 30 -# Date and time format as strftime to be included in the articles. +# Date and time format as strftime, to be included in the articles. datetime_format = '%d.%m.%Y %H:%M' # Postprocessing command of the articles. The article is written to stdin in HTML format and read from stdout.