We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e569de7 commit 47789a7Copy full SHA for 47789a7
Makefile
@@ -86,6 +86,9 @@ $(DST_DIR)/atom.xml: $(SRC_DIR)/blog/*/*.md
86
echo "<updated>$${entry_date}T00:00:00Z</updated>"; \
87
echo "<published>$${entry_date}T00:00:00Z</published>"; \
88
echo "<summary>$$(lowdown -X summary $(SRC_DIR)/blog/$${entry_date}/index.md)</summary>"; \
89
+ echo "<content type=\"html\">"; \
90
+ lowdown -Thtml "$(SRC_DIR)/blog/$${entry_date}/index.md" | sed "s/</\</g" | sed "s/>/\>/g"; \
91
+ echo "</content>"; \
92
echo "<id>$$entry_url</id>"; \
93
echo "</entry>"; \
94
done >> $@
0 commit comments