On Apr 5, 2011, at 9:02 AM, pbreit wrote:
> What are people's thoughts on using HTML tags vs plain HTML? I'm thinking of
> going more towards pure HTML. Will I be losing anything major?
>
> For example:
>
> <a href="/item/{{=item.id}}">{{=item.title}}</a>
>
> {{=A(item.title, _href=URL('default', 'item', extension='', args=item.id))}}At a minimum you should use URL, or you won't be able to use routing. And URL does some encoding (eg of spaces) that you'd have to do manually otherwise.

