Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Does someone know perl-based HTML editor? I always did write my web pages in a standard text editor. I need online tool which helps the webmaster of complex web pages, but which allows the full control about the generated source, generate clean html code(i dont use WYSWYG editors as their output promises a pixel exact layout which fails with most browsers, etc).

Replies are listed 'Best First'.
Re: HTML Editor
by mpeters (Chaplain) on Dec 15, 2004 at 16:13 UTC
    I don't think you're going to find a perl-based editor, but I could be wrong. You didn't say whether you wanted this editor to be a desktop application or a web app? You also didn't specify whether it's windows/*nix or if that doesn't matter.

    I've heard good things about Kate but I haven't used it myself. I believe it has built in network access.
      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.
Re: HTML Editor
by b10m (Vicar) on Dec 15, 2004 at 15:27 UTC

    SSH -> Vim

    --
    b10m

    All code is usually tested, but rarely trusted.
      I mean simple end-user tool - ready. The VIM requires compiling, etc
        It sounds like you are looking for a content management system. A few of my coworkers setup Krang to manage complex websites, and integrated htmlarea to provide a wysiwig editor. Krang is written in object oriented perl and runs on a mod_perl enabled Apache webserver. It's not hard to setup, and the support on the mailing list is great.

        Ah yes, that's pretty hard. Luckilly Perl doesn't require compiling!

        I should've just said: SSH -> $EDITOR

        --
        b10m

        All code is usually tested, but rarely trusted.
Re: HTML Editor
by gellyfish (Monsignor) on Dec 16, 2004 at 11:42 UTC