Hi,
I'm using Symfony 1.4 and wondering whether it's possible to achieve the following:
<a href="#"><span>Text</span></a>
... using Symfony's link_to helper?
Of course, it's possible to do this:
<a href="<?php echo url_for('#') ?>"><span>Text</span></a>
But I'm wondering if there's a simpler way to do it, especially as combining i18n with the above will produce:
<a href="<?php echo url_for('#') ?>"><span><?php echo __('Text') ?></span></a>
... a tag soup basically.
Thanks.