Created
January 16, 2015 18:15
-
-
Save AlexBaranosky/f34a9988990b64186512 to your computer and use it in GitHub Desktop.
html escaping question for Kioo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def text "<p><maybe>. This is new. ' !@#$%^&*(){}/=?+[]’</p>") | |
(html-content text) | |
;; desired output on UI: | |
;; <maybe>. This is new. ' !@#$%^&*(){}/=?+[]’ | |
;; actual output on UI: | |
;; <maybe>. This is new. ' !@#$%^&*(){}/=?+[]’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment