Reputation: 3799
I am trying to render quotes around text with Hiccup.
[:p "I want double quotes around this string"]
I tried &qout;
to no avail.
Upvotes: 2
Views: 208
Reputation: 1511
Try escaping the quotes:
[:p "\"I want quotes around this string\""]
Upvotes: 4