Entire presentation as one single HTML file
If you add
SingleHTMLFile=YES
to the [PPT2HTML] section of PPTools.INI, PPT2HTML will concatenate all of your slides into a single HTML file.
Here's how it works:
- It generates an HTML page from each slide as it normally would
- It removes the header/trailer sections of the resulting HTML file
- It tacks the result onto a single output file whose name is whatever you supplied for Base Name in Prefs.
For example:
You have a presentation you'll output as Slidesxx.htm
PPT2HTML generates Slides01.htm, which looks something like:
<html> <head> [meta tags and other stuff here] </head> <body> [the body portion of your html template] </body> </html>
PPT2HTML removes everything up to and including the starting <body> tag and it removes everything following the ending </body> tag, leaving just the body portion of the HTML.
It creates a file called Slides.htm (the Base Name you chose for your presentation output) and adds the body portion of Slides01.htm to it.
For each subsequent slide, it does the same, tacking the body portion of the slide's HTML onto Slides.htm
You end up with a single HTML file that includes all the slides in your presentation.
This relies on your template being structured in standard HTML style, or at least on the opening and closing body tags being in the usual places. If they're not, you may get odd results.
[Previous] [Home] [Next]