escaping characters
Currently only > and < are escaped in certain places, & and " (quotation) should also be added.
@genmeblog thanks.
Could you give an example that behaves unexpectedly for you?
(deleted comment to wrong issue)
Zulip discussion: https://clojurians.zulipchat.com/#narrow/stream/422115-clay-dev/topic/images/near/444295831
This breaks rendering:
(kind/md "&/<>\\*+-\"\'")
Ok, the problematic char is \' (tick)
Hiccup does this: https://github.com/weavejester/hiccup/blob/2.0.0-RC1/src/hiccup/util.clj#L80-L88
Thanks.
version 2-beta11 filters more characters.
Leaving this open to figure out more carefully.