Skip to content

Commit

Permalink
fix(feed-json): wrong rendered content output
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Aug 25, 2017
1 parent a935029 commit a55f662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _app/feed-json.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit a55f662

Please sign in to comment.