Hi all,

I'm trying to output the items from a sequence into a HTML list using
the Hiccup HTML builder, but am having problems.

Here is the code I think 'should' work, but nothing after the ':ul' is
passed back to the response:

(html
        [:html
                [:body
                        [:ul
                                (doseq [item myseq] [:li item])
                        ]
                ]
        ]
)

Can anyone see why this is not working?

Thanks,

Paul.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to