diff --git a/Makefile b/Makefile index f7fe970..3087879 100644 --- a/Makefile +++ b/Makefile @@ -27,8 +27,7 @@ review: ## create new 5-star review post export title_slug=$$post_date_slug-`echo $${title:-Untitled} | sed -E -e 's/[^[:alnum:]]/-/g' -e 's/^-+|-+$$//g' | tr -s '-' | tr A-Z a-z`; \ export post_path=review/$$title_slug.gmi; \ printf "# %s\n" "$$title" > $$post_path; \ - printf "⭐⭐⭐⭐⭐\n" >> $$post_path; \ - printf "## Five Star Review\n" >> $$post_path; \ + printf "⭐⭐⭐⭐⭐\n" >> $$post_path; \ printf "\n\n" >> $$post_path; \ printf "Originally Published %s at:\n" "$$post_date" >> $$post_path; \ printf "gemini://tilde.team/~tomasino/%s\n" "$$post_path" >> $$post_path; \