1
0
Fork 0
mirror of https://codeberg.org/Reuh/feather.git synced 2025-10-27 18:19:32 +00:00

docs: copy-paste mishaps in README.md

This commit is contained in:
Étienne Fildadut 2025-10-17 15:03:24 +02:00
parent 9ae72daa11
commit d77a92cb82

View file

@ -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
```