2

I am trying to render quotes around text with Hiccup.

[:p "I want double quotes around this string"]

I tried &qout; to no avail.

Alex Miller
  • 69,183
  • 25
  • 122
  • 167
hzhu
  • 3,759
  • 5
  • 29
  • 39

1 Answers1

3

Try escaping the quotes:

[:p "\"I want quotes around this string\""]
sbensu
  • 1,491
  • 10
  • 9