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
Upon creating a new lein project, the default page tells me to get going by adding the following to welcome.clj:
(defpage "/my-page" [] (html [:h1 "This is my first page!"]))
but the html symbol is not resolved. Had to add a :use hiccup.core :only [html] to the ns macro at the top of welcome.clj.
html
:use hiccup.core :only [html]
ns
The text was updated successfully, but these errors were encountered:
See also noir-clojure/noir#134
Sorry, something went wrong.
It is quite surprising it takes > 3 months to fix something that simple :-(
No branches or pull requests
Upon creating a new lein project, the default page tells me to get going by adding the following to welcome.clj:
but the
html
symbol is not resolved. Had to add a:use hiccup.core :only [html]
to thens
macro at the top of welcome.clj.The text was updated successfully, but these errors were encountered: