Servertec   Templates
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
iPP
Templates
Constants
Identifiers
Operators
Directives
Macros
Java API
Sales
Legal
Feedback

 

A collection of directives and statements.

Syntax

    { directive | statement }...

Notes

    directive a command to the preprocessor.
    statement the text that is processed by the preprocessor.

    A \ (line continuation character) may be used at the end of a directive or statement to indicate that the directive or statement continues on the next line. This operator is normally used to break up long lines into multiple small lines.

Example

    pp -i templates -d TITLE=Support index.tf index.html
    pp -d UNIX index.tf index.html
    

index.tf

    #include <header.tf>
    
        This page was generated using iPP.
    
    #include <footer.tf>
    

header.tf

    <html>
        <head>
            <title>TITLE</title>
        </head>
        <body>
            <h1>TITLE</h1>
            <hr>
    

footer.tf

        </body>
    </html>
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:17:56 EST 1999