HtmlTidy()

Runs the W3 Tidy utility against the passed in HTML, performing a series of cleanup and HTML repair routines

Usage

STRING = HtmlTidy( string )
Argument Summary
string html block

Calling

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

HtmlTidy(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

HtmlTidy( ArgumentCollection={
   string : ?
} );