Railo 4.1 Reference
Choose a tag:

Tag <CFPROCESSINGDIRECTIVE>

Suppresses extra white space and other output, produced by CFML within the tag's scope.

Body

This tag may have a body.

Example

	<cfprocessingdirective
		[executionlog="boolean"]
		[pageencoding="string"]
		[suppresswhitespace="boolean"]>

	[</cfprocessingdirective>]
	
This tag is also supported within cfscript
	<cfscript>
		processingdirective
		[executionlog="boolean"]
		[pageencoding="string"]
		[suppresswhitespace="boolean"] {

	}
	</cfscript>

Attributes

The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name Type Required Description
executionlog boolean No Boolean indicating whether to write execution log or not. 
pageencoding string No A string literal; the character encoding to use to read the page. The value may be enclosed in single or double quotation marks, or none. 
suppresswhitespace boolean No Boolean indicating whether to suppress the white space and other output generated by the
CFML tags within the cfprocessingdirective block.