From b4140e95d30b3ee70ad47cfea2e87a8100252bd7 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Tue, 14 Jul 2020 16:30:43 -0400 Subject: [PATCH] rss: add publishing date --- src/post/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/post/mod.rs b/src/post/mod.rs index ebe1be3..54e25d7 100644 --- a/src/post/mod.rs +++ b/src/post/mod.rs @@ -85,6 +85,7 @@ impl Into for Post { result.guid(guid); result.author(Some("me@christine.website".to_string())); result.content(self.body_html); + result.pub_date(self.front_matter.date); result.build().unwrap() }