1

Anybody know how to produce an xml element like this in rails using xml Builder?
<image:loc>http://example.com/image.jpg</image:loc>

xml.image :loc http://example.com/image.jpg
Is supposed to work but doesn't.

concept47
  • 30,257
  • 12
  • 52
  • 74

1 Answers1

3

You're pretty close, but the correct syntax is:

xml.image :loc, "http://example.com/image.jpg"
Greg Campbell
  • 15,182
  • 3
  • 44
  • 45