The source project of this merge request has been removed.
Add news
Script used for extraction:
for item in items/*; do
output="$HOME/project/kphotoalbum-kde-org/_posts/$(date -d @$(head -n 1 "$item") +"%Y-%m-%d")-${item:6}.md"
echo "---" > "$output"
echo "layout: post" >> "$output"
echo "title: \"$(sed -n 2p "$item")\"" >> "$output"
echo "date: $(date -d @$(head -n 1 "$item") +"%Y-%m-%d %H:%m:%S")" >> "$output"
echo --- >> "$output"
tail -n+3 "$item" >> "$output"
done```
Edited by Carl Schwan