From a55f6629f1cde4e4dd8729ec01ac90cb919ee7a0 Mon Sep 17 00:00:00 2001 From: Tunghsiao Liu Date: Fri, 25 Aug 2017 23:27:00 +0800 Subject: [PATCH] fix(feed-json): wrong rendered content output --- _app/feed-json.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_app/feed-json.json b/_app/feed-json.json index 91e212691..761c6734c 100644 --- a/_app/feed-json.json +++ b/_app/feed-json.json @@ -23,8 +23,8 @@ permalink: /feed.json "url": {{ author.web | jsonify }}, "email": {{ author.email | jsonify }} }, - "content": {{ post.content | markdownify | strip_html | jsonify }}, - "excerpt": {{ post.excerpt | markdownify | strip_html | jsonify }}, + "content": {{ post.content | markdownify | strip | jsonify }}, + "excerpt": {{ post.excerpt | markdownify | strip_html | strip | jsonify }}, "languages": {{ post.languages | jsonify }}, "categories": {{ post.categories | jsonify }}, "tags": {{ post.tags | jsonify }}