in reply to Re: HTML Editor
in thread HTML Editor

I mean the web application(online) script, for Unix platform, which does not need some very 'exotic' modules to work.
The task is produce nice formatted html pages in output. Script need produce nice formatted html page from text input, generate clean html code(insert correct tags, optimize formatting). It need be enable set formatting options.
As to content management system -this a little another thing.

Replies are listed 'Best First'.
Re^3: HTML Editor
by Joost (Canon) on Dec 15, 2004 at 18:11 UTC
      not sure how to implement Text::Wikiformat into single perl scipt.
        use Text::WikiFormat; my $html = Text::WikiFormat::format($raw);

        (Hint: You might want to read Text::WikiFormat too)

        --
        b10m

        All code is usually tested, but rarely trusted.