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
Reproduces with
(ns scratch.debug (:require [nextjournal.clerk :as clerk])) (defmacro defmy [name body] `(do (def ~name ~body) (clerk/html [:h1.bg-green-200 "Defined: " [:span.font-mono.bg-slate-200 '~name]]))) (defmy stuff [1 2 3])
renders as instead of
This is because the macro name starts with def and it defines exactly one var.
The text was updated successfully, but these errors were encountered:
Show correct non-var return value for deflike form, fixes #499
6fcab98
17610aa
Show correct non-var return value for deflike form, fixes nextjournal…
cf2ca9a
…#499
Successfully merging a pull request may close this issue.
Reproduces with
renders as
instead of
This is because the macro name starts with def and it defines exactly one var.
The text was updated successfully, but these errors were encountered: