i like to use the url template tag in my model's content.
example:
models content:
Car.description = 'this is a link to our main page: <a href="{url home}">home</a>'
in template.html:
<div>{{ Car.description }}</div>
result
<div>this is a link to our main page: <a href="/">home</a>
is it possible, or do i have to write my own template tag?
thanks in advance Roman