You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not running your code to actually see what the debugger says. But I can see things that jump out:
in `test-g': it's a macro. You need two backquotes if you want it to return a backquoted list. The first backquote is "used up" by the macro.
in `html-standard-page': The form (:body ,@Body) needs to be backquoted. And then ,@Body needs to become ,,@Body.
Once you fix those two things, you will be where I am at: your with-html will not work, but for a different reason that I cannot yet explain. I'm about to create an issue of my own. Unless defining `with-html' as a macro is a potential workaround. I will actually try that first.
Take the following as an example:
With this code, I would expect
(html-standard-page (test-g "15"))
to output something like:`
Why doesn't it? Instead I get warnings that
:td
etc. are not defined. What am I doing wrong?I hope this is an OK place to post this, as I wasn't sure where I should go with support questions. Thank you.
The text was updated successfully, but these errors were encountered: