We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue keeps track of which practice exercises have had a generator added to them:
The text was updated successfully, but these errors were encountered:
I tried to more elegantly handle keywords and maps, but finally found out why it didn't work:
(defn- wrap-context [model] (clojure.walk/postwalk #(cond (map? %) (java.util.HashMap. ^java.util.Map %) (keyword? %) (name %) :else %) model))
We're basically always losing information before rendering.
source
Sorry, something went wrong.
I've tried monkey patching that function but then hbs just crashes
No branches or pull requests
This issue keeps track of which practice exercises have had a generator added to them:
The text was updated successfully, but these errors were encountered: