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

I have a script that generates an HTML file for me, but instead of displaying it in a browser, I would like have it printed out in rendered form. Is there anyway to do in a Linux environment? Thanks in advanced!

Replies are listed 'Best First'.
Re: Rendered HTML to printer
by The Mad Hatter (Priest) on Jul 28, 2003 at 18:17 UTC
    Rendering HTML is no easy task, but the replies to Rendering HTML / capturing pixels might be of some help to you.

    Update An idea just came to mind: You might want to try and convert the HTML document to Postscript, and then print that... just an idea. (Update2 I see hiseldl had the same idea earlier ; )

      Thanks! That's definately a great start for me! Cheers!