Skip to content

Commit

Permalink
Revert "Don't html.unescape the body Markdown -autopull"
Browse files Browse the repository at this point in the history
This reverts commit 35e4cbd.
  • Loading branch information
makyen committed Sep 19, 2020
1 parent 35e4cbd commit 08bcbe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/_Post.py
Expand Up @@ -117,7 +117,7 @@ def _parse_api_post(self, response):
self._title = html.unescape(response["title"])
self._body = html.unescape(response["body"])
if "body_markdown" in response and response["body_markdown"] is not None:
self._markdown = response["body_markdown"]
self._markdown = html.unescape(response["body_markdown"])

if "IsAnswer" in response and response["IsAnswer"] is True:
self._is_answer = True
Expand Down

0 comments on commit 08bcbe0

Please sign in to comment.