Stefan van der Meer
Stefan van der Meer
This requires a specific route configuration that includes a route that can potentially match a path that starts with `//`, for example in this minimal setup: ```clojure (def app (ring/ring-handler...
This is essentially the issue that was reported on clojurescript itself as CLJS-2529: https://clojure.atlassian.net/projects/CLJS/issues/CLJS-2529 And subsequently fixed in clojure/clojurescript@8670cc40cf09f90f1d36cb4bf0a2c68713fb1d68 However, that fix expects `java.class.path` to contain all relevant resources including...
I've found the `:wrap-jetty-handler` to be very handy for wrapping the app handler created by the adapter in one or more Jetty handlers. However, in the current release the option...
In 0.6.0, nested map data is merged in a way that matches meta-merge, supporting `^:replace`: ```clojure user> (meta-merge {:roles {:foo false :bar true}} {:roles ^:replace {:foo true}}) {:roles {:foo true}}...
### Prerequisites - [X] I have [searched](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed issues - [X] I have [validated](https://html5.validator.nu/) any HTML to avoid common problems - [X] I have read the [contributing...
Trying to render a blockquote throws an exception right now: ```clojure user> (markdown->clj-pdf "> This is a quote") java.lang.IllegalArgumentException: No matching field found: getLiteral for class org.commonmark.node.BlockQuote ``` The issue...
Fixes #2 by adding support for rendering quotes.