add comma

This commit is contained in:
Denis Lehmann 2020-04-26 20:29:03 +02:00
parent 1ddc57c30a
commit 3d9531eb8d
2 changed files with 4 additions and 4 deletions

View file

@ -67,6 +67,9 @@ base_directory = '/home/<user>/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').

View file

@ -4,7 +4,7 @@ base_directory = '/home/<user>/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.