Thread HTC und Textile (11 answers)
Opened by Froschpopo at 2007-10-09 20:46

Froschpopo
 2007-10-09 21:53
#100578 #100578
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
das Problem sind die < und > die werden nicht gequotet!
Sie müssen erst durch Textile durch bevor sie an HTC übergeben werden.

teste mal:
"test":<TMPL_VAR NAME=TEST>

Ablauf:
Code: (dl )
1
2
3
4
5
6
my $text = ' "Klick hier":http://<TMPL_VAR NAME=ID>';

my $textile = new Text::Textile;
$text = $textile->process($text);

$tmpl->param(CONTENT => $text);


In HTC greife ich dann mittels TMPL_INCLUDE_STRING auf CONTENT zu.

View full thread HTC und Textile