From d77a92cb829925110f7fada1da4ddc9e40f581fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Reuh=20Fildadut?= Date: Fri, 17 Oct 2025 15:03:24 +0200 Subject: [PATCH] docs: copy-paste mishaps in README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ead8668..88dba43 100644 --- a/README.md +++ b/README.md @@ -53,14 +53,13 @@ The now read articles can (surprisingly) be found in the trash. After marking an #### Reading read articles -If you want to re-read your favorites articles directly in the Feather reader director, you can configure Feather to write articles files for read articles too: +If you want to re-read your favorites articles directly in the Feather reader directory, you can configure Feather to write articles files for read articles too: ```toml -# Write article HTML files for read articles [html] +# Write article HTML files for read articles write_read_articles = true # Add a checkmark in the article filename indicating the read status -[html] filename_template = "{% if unread %}☐{% else %}☑{% endif %} [{{ feed_title }}]\t{{ title }} ({{ published }}).html" ``` @@ -73,8 +72,8 @@ Note that this also change the mark-as-unread behavior: since it is no longer po By default, Feather will only grab unread articles from the server, so the read articles you have access to locally are only the articles kept for the 3 days grace period after marking them as read (see the [handling read articles chapter](#handling-read-articles)). If you want to have access to _all_ articles from the server, you can add to your configuration: ```toml -# Grab both read and unread articles from the server [server] +# Grab both read and unread articles from the server only_sync_unread_articles = false ```