~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/tools/tml2html.pl

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
#
 
3
# Static TML -> HTML converter
 
4
#
 
5
# cd to the tools directory to run it
 
6
 
 
7
do '../bin/setlib.cfg';
 
8
use Foswiki::Plugins::WysiwygPlugin::TML2HTML;
 
9
my $conv = new Foswiki::Plugins::WysiwygPlugin::TML2HTML();
 
10
undef $/;
 
11
my $html = <>;
 
12
my $tml = $conv->convert( $html, { very_clean=>1 } );
 
13
print $tml;