hey friends, i have a markdown code block in a docstring that isn't treated as code, and i'd love to have it properly rendered.
Given:
(defmacro try+
"Works the same as try except catch clauses can be slightly fancier:
Examples:
```clojure
(try (throw (ex-info \"example\" {::sinker/type :hello :data :caught}))
(catch :hello exd
(:data exd)))
=> :caught
```
"
[& body]
(when (seq body)
...))
Result:
i'm willing to work on this if such a feature is acceptable.
hey friends, i have a markdown code block in a docstring that isn't treated as code, and i'd love to have it properly rendered.
Given:
Result:
i'm willing to work on this if such a feature is acceptable.