I am trying to create an xml.builder file that puts links into cells that I am then using a javascript library to render into a table.
Basically I'd like to make the following item a link.
xml.tag!("cell", person.name)
something like this.
xml.tag!("cell", person_path(@person))
Though I know this doesn't work.