Appendix C. Converting from PML to TPT

Table of Contents

Strings
Carriage returns
Functions
Unsupported PML

Strings

In PML, strings may be passed bare (i.e. without quotes) to macros and functions. TPT requires strings to be in enclosed in either single or double quotes (' or ").

Example C.1. Strings in PML and TPT

String parameters in PML

@include(file.pmlh)

String parameters in TPT

@include("file.tph")
or
@include('file.tph')