/[webpac]/trunk/back2html.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/back2html.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (show annotations)
Sun Feb 23 07:04:36 2003 UTC (21 years ago) by dpavlin
File size: 364 byte(s)
support for <br>

1 #
2 # reformat html inside xml back to html (basically, support for tables)
3 #
4 # filed #-# field ###
5 # ...
6
7 sub back2html {
8 my $html = shift;
9
10 my $out;
11 foreach $line (split(/###/,$html)) {
12 $out .= "<tr><td>";
13 my @items = split(/#-#/,$line);
14 $out .= join("</td><td>",@items);
15 $out .= "</td></tr>\n";
16 }
17 $out =~ s/&lt;br/*&gt;/<br\/>/g;
18 return $out;
19 }
20
21 1;

Properties

Name Value
cvs2svn:cvs-rev 1.2

  ViewVC Help
Powered by ViewVC 1.1.26