arthur.bebou

Le site arthur.bebou.netlib.re - retour accueil

git clone git://bebou.netlib.re/arthur.bebou

Log | Files | Refs |

commit db03c5a6ca782c6b3c854b98c97f58ca92f9d85d
parent 0498f1d6974959f254c33d0704e3753f8d0b7c0c
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Thu, 15 May 2025 15:12:02 +0200

Correction du flux atom

Peut-ĂȘtre un jour il sera vraiment valide

Diffstat:
Mcommon | 3+++
Mlayouts/atomfeed | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/common b/common @@ -4,6 +4,9 @@ tmpd=$(mktemp -d) trap "rm -rf $tmpd" EXIT show() { lowdown --html-no-skiphtml --html-no-escapehtml $tmpd/$1; } +id() { + cat $tmpd/$1; +} tsv2layout() { cat > $tmpd/all diff --git a/layouts/atomfeed b/layouts/atomfeed @@ -13,7 +13,7 @@ layout() { <name>Arthur Pons</name> </author> <id>http://arthur.bebou.netlib.re/</id> - $(show entries) + $(id entries) </feed> @@ }