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
Legal
Contact Us

 

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
Copyright © 1998-2005 Servertec. All rights reserved.
Privacy Statement.
Last Modified: Sun Sep 04 14:56:03 EDT 2005