Hi Chris,

Well, I already use HTML::Mason as a templating engine and everything is
fine.  What I need is a way to generate HTML 4.01 compliant HTML. 
Basically taking the concept of CGI.pm, but keeping the resulting HTML
up to date with the HTML specifications.  For example, if you use CGI.pm
or write a table by hand without the width parameter of the table the
HTML validator at w3.org will not validate your HTML.

For now, I just run my pages through HTML Tidy (tidy.sf.net) and fix it
by hand, but I'd like to take a more proactive approach and fix as many
as I can in my initial coding.

Oh well, thanks anyway.

Kevin

On Mon, 2003-12-15 at 13:30, Chris Ward wrote:
> Hi Kevin and everyone,
> 
>  I recommend http://www.template-toolkit.org/. Just print out the 
> documentation so it's on hand and your guarenteed on you way to creating some 
> cool ass stuff. Basically it's embedded perl inside HTML....but you if you 
> reverse it and call it from within a perl cgi module with apache-mod_perl and 
> you can pre-fetch all the html and necessary data (generated images...etc) 
> requested and cache it all or send it to the browser on the fly...etc. 
> 
> Check out www.einsteinspub.com for my only web-project.....it's taken about 4 
> months of hard work to get it this far......but it's awsome IMHO! 
> 
> 100% (well.... you know what i mean) made by me. Coded in Perl and i 
> 
> use strict;
> use warnings;
> use Template;
> use CGI;
> use GD;
> use Image::GD::Thumbnail;
> 
> as dependencies only other than the mysql backend. All the navigation menus 
> are automatically generated on the fly and cached. 
> 
> Just FYI; hope it's what you were looking for.
> 
> Otherwise....what are you looking for exactly? A WYSIWYG or What you see is 
> what you get editor?
> 
> -Chris
> 
> 
> On Monday 15 December 2003 10:57, Kevin Old wrote:
> > Hello everyone,
> >
> > I've been "hand coding" HTML for some time now, but recently a lazy
> > streak has run through me and I'd like to find a way to "autogenerate"
> > creation of a lot of my HTML.  Thing is, I'd also like it to be HTML
> > 4.01 compliant.
> >
> > I'd rather not go the CGI.pm route as I am generating static pieces of
> > HTML for use in HTML::Mason pages.  A table here, a link there, and so
> > forth, in the end it seems that I can never catch all the errors for
> > HTML 4.01 compliance.
> >
> > I've tried all the linux HTML editors and none of them come close to
> > what I need.  Bluefish for instance even generates some HTML that
> > Mozilla won't even interpret.
> >
> > Thoughts, suggestions?
> >
> > Thanks,
> > Kevin
> > --
> > Kevin Old <[EMAIL PROTECTED]>
-- 
Kevin Old <[EMAIL PROTECTED]>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to