HtmlCodeformat()

Wraps the given string inside of the HTML <pre> .. </pre> tags, escaping the string accordingly

Usage

STRING = HtmlCodeformat( string, attributes )
Argument Summary
string code to be escaped inside of <pre> tags
attributes any attributes to add to the <pre%gt; tag [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

HtmlCodeformat(
   string=?, 
   attributes=?
);

Supports passing parameters as a structure using ArgumentCollection:

HtmlCodeformat( ArgumentCollection={
   string : ?, 
   attributes : ?
} );