diff options
| author | Paul Buetow <git@mx.buetow.org> | 2021-04-30 10:03:50 +0100 |
|---|---|---|
| committer | Paul Buetow <git@mx.buetow.org> | 2021-04-30 10:03:50 +0100 |
| commit | 9b9563a6a76d0ee67508f91528d70190e504c874 (patch) | |
| tree | bf656d9acaf40d3a48164c4e83f643ce91ed869e | |
| parent | acefd95284ec8114c605f3cbbc5de2a9fe6cab7f (diff) | |
quotation fixes and make atom w3c validator happier
| -rwxr-xr-x | buetow.org.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/buetow.org.sh b/buetow.org.sh index 245d608f..5bc2cea6 100755 --- a/buetow.org.sh +++ b/buetow.org.sh @@ -42,10 +42,10 @@ atom::meta () { echo 'local meta_post_is_new=1' cat <<META | tee $meta_file local meta_date=$now -local meta_author=$AUTHOR +local meta_author='$AUTHOR' local meta_email=$EMAIL -local meta_title="$title" -local meta_summary="$summary..." +local meta_title='$title' +local meta_summary='$summary...' META git add $meta_file return @@ -68,7 +68,7 @@ atom::generate () { <subtitle>$SUBTITLE</subtitle> <link href="gemini://$DOMAIN/gemfeed/" rel="self" /> <link href="gemini://$DOMAIN/" /> - <id>gemini://$DOMAIN</id> + <id>gemini://$DOMAIN/</id> <updated>$now</updated> ATOMHEADER |
