I'm playing around with Angularjs and Slim but am trying to figure out how to come up with a cleaner syntax.
I want to do:
td {{content.name}}
td {{content.body}}
td {{content.owner}}
But it gives me an error. Most likely because {
is used to group HTML attributes. I've had to change it to this:
td
| {{content.name}}
td
| {{content.body}}
td
| {{content.owner}}
Is there a cleaner way to do this?