w3HtmlParse parses the substitution list into HTML text and sends results to the browser.
call w3HtmlParse (text , sub )
|
text |
In |
The unparsed text. |
|
sub |
In |
The substitution matrix. Each attribute contains a separate substitution. |
The following lines of code...
text = 'The title should go here -##TITLE##-'
sub = '##TITLE##':@vm:'The title is ##NAME##'
sub<-1>= '##NAME##':@vm:'"Moby Dick"'
call w3HtmlParse( text, sub)
...produce the following output:
The title should go here -The title is "Moby Dick"-