Leser: 2
|< 1 2 >| | 12 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h1>Aktuelles</h1>
<ul>
<li><em>kursiv</em></li>
</ul>
<p><br />
* <em>kursiv</em><br />
<br />
* <em>kursiv</em><br />
<br />
* <em>kursiv</em><br />
<br />
* <em>kursiv</em><br />
</p>
* "Hier geht's zur alten Seite":http://<TMPL_VAR NAME=ID>
Froschpopo+2007-10-09 18:46:21--Problem: Innerhalb des LOOP wird * nicht durch ein Listenblock ersetzt.
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);
Froschpopo+2007-10-09 19:53:27--Code: (dl )1
2
3
4
5
6my $text = ' "Klick hier":http://<TMPL_VAR NAME=ID>';
my $textile = new Text::Textile;
$text = $textile->process($text);
$tmpl->param(CONTENT => $text);
1
2
3
4
5
6
my $text = ' "Klick hier":http://<TMPL_VAR NAME=ID>';
$tmpl->param(CONTENT => $text);
my $textile = new Text::Textile;
$text = $textile->process($text);
1
2
3
4
5
6
7
8
9
10
my $text = ' "Klick hier":http://<TMPL_VAR NAME=ID>';
my $tmpl = HTML::Template::Compiled->new(filename=>'...');
$text = $tmpl->parse($text, \%params);
my $textile = new Text::Textile;
$text = $textile->process($text);
$tmpl->param(CONTENT => $text);
|< 1 2 >| | 12 Einträge, 2 Seiten |