diff options
author | Sean Allred <code@seanallred.com> | 2014-11-14 00:38:33 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-14 00:38:33 -0500 |
commit | 5058ab5ba14220615c6a01911898b2c8ded987e4 (patch) | |
tree | 364b99967b6a481e26c0fffaa9a87094a8002c62 /sx-question-mode.el | |
parent | d511ee92d4779cf272a0fb9e215c514eb3cc1165 (diff) |
Clean content at the request level
Diffstat (limited to 'sx-question-mode.el')
-rw-r--r-- | sx-question-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sx-question-mode.el b/sx-question-mode.el index c17d55a..4cbdf3a 100644 --- a/sx-question-mode.el +++ b/sx-question-mode.el @@ -200,7 +200,7 @@ DATA can represent a question or an answer." (if .title ;; Questions have title (propertize - (sx-encoding-clean-content .title) + .title 'font-lock-face 'sx-question-mode-title 'sx-question-mode--section 1) ;; Answers don't @@ -237,7 +237,7 @@ DATA can represent a question or an answer." '(face sx-question-mode-content-face) (insert "\n" (sx-question-mode--fill-string - (sx-encoding-clean-content .body_markdown)) + .body_markdown) sx-question-mode-separator))) ;; Comments (when .comments @@ -277,7 +277,7 @@ DATA can represent a question or an answer." (sx-assoc-let data (insert " " - (sx-encoding-clean-content .body_markdown) + .body_markdown " – " (sx-question-mode--propertized-display-name .owner) "\n"))) |