From 11dc62e5ceba2d008738b92eaabdd86043401cac Mon Sep 17 00:00:00 2001 From: Brian Roels <54845569+brapoprod@users.noreply.github.com> Date: Tue, 25 Jun 2024 14:28:09 +0200 Subject: [PATCH 1/2] [Fix] Update docs for as_update (boolean not supported anymore) --- docs/configuration.md | 4 ++-- docs/schema.json | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 0f53989..5cfc092 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -315,7 +315,7 @@ For example, in your `best_article.md` created in 2019, you can write the front- - rss: date_from_meta: as_creation: "date" - as_update: false + as_update: "git" datetime_format: "%Y-%m-%d %H:%M" default_timezone: Europe/Paris ``` @@ -343,7 +343,7 @@ For example, in your `best_article.md` created in 2019, you can write the front- - rss: date_from_meta: as_creation: "date.created" - as_update: false + as_update: "false" datetime_format: "%Y-%m-%d %H:%M" default_timezone: Europe/Paris ``` diff --git a/docs/schema.json b/docs/schema.json index 2896f31..7f321ac 100644 --- a/docs/schema.json +++ b/docs/schema.json @@ -61,7 +61,6 @@ }, "as_update": { "type": [ - "boolean", "string" ] }, From 5a06b7876a3520ea7673d7e62fc67d949f994fdc Mon Sep 17 00:00:00 2001 From: Brian Roels <54845569+brapoprod@users.noreply.github.com> Date: Tue, 25 Jun 2024 14:30:02 +0200 Subject: [PATCH 2/2] Fix extra --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 5cfc092..afa518d 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -343,7 +343,7 @@ For example, in your `best_article.md` created in 2019, you can write the front- - rss: date_from_meta: as_creation: "date.created" - as_update: "false" + as_update: "git" datetime_format: "%Y-%m-%d %H:%M" default_timezone: Europe/Paris ```