- From: Stefan Höfs <stefanhoefs@web.de>
- Date: Wed, 2 Jun 2004 21:20:48 +0200
- To: Bjoern Hoehrmann <derhoermi@gmx.net>
- Cc: html-tidy@w3.org
Am Mittwoch, 2. Juni 2004 01:40 schrieben Sie: > * Stefan Höfs wrote: > >I am using HTML::Template to create dynamic webpages with perl. > > > >If I use the Template Tag <TMPL_VAR NAME ="name"> inside the <a> tag like: > > > ><a href="<TMPL_VAR NAME=path>"> > >tidy converts this to > ><a href="%3CTMPL_VAR%20NAME=path%3E"> > > > >Is there any possibility that tidy leaves this Template Tag unaltered? > > --fix-uri no would cause Tidy to change it to <TMPL_VAR NAME=path> > instead. Other than that, no, not really. Thanks for the reply. My dirty solution for this problem is now to run sed afterwards: sed "s/<TMPL_VAR NAME=id>/<TMPL_VAR NAME=id>/g" exp.html
Received on Wednesday, 2 June 2004 15:17:51 UTC