EWS::htmlout - object-oriented perl module for HTML 4.0 dynamic document content creation.
use EWS::htmlout;
$html = new EWS::htmlout(-debug => 0);
$html->ContentType('text/html'); $html->HtmlStart; $html->Head; $html->Title; $html->Display('My Page Title'); $html->EndTitle; $html->EndHead; $html->Body(-background=>'white',-color=>'blue'); $html->H1(-align=>'center'); $html->Display("My Page Title"); $html->EndH1; $html->P; ... $html->EndP; $html->EndBody; $html->HtmlEnd;
EWS::htmlout is an object-oriented class which provides access to a collection of HTML 4.0 related methods designed to make the creation of cgi scripts easier. EWS::htmlout extends the base-class EWS::baseIO to provide object-oriented HTML 4.0 input/output functionality. All EWS::baseIO methods and attributes are fully available in addition to the EWS::htmlout methods and attributes.
Each EWS::htmlout method accepts parameters for the related HTML function as a hash containing name/value pairs for each HTML parameter.
EWS::htmlout can be overridden or extended by (i.e. - serve as a base-class for) modules wishing to modify and/or expand upon the provided vocabulary.
NOTE: EWS::htmlout does not support DEPRECATED html entities. EWS::htmldep provides backward compatability to access DEPRECATED entities. EWS::htmldep uses EWS::htmlout as a base class.
This is version 2.0 of htmlout.pm.
$html
= new EWS::htmlout(%parameters);
or
$html
= EWS::htmlout->new(%parameters);
Enter: %parameters = parameter hash (see below). Exit: returns a blessed reference to a new htmlout object.
parameters are of the form:
-arg => value
acceptable values are: -debug => 1 = debug messages -htmlformat => 1 = html format, else console format -timestamp => 1 = timestamp display line messages -type => 0 = console output (default) 1 = output to file only 2 = output to console and file (log messages) -end => string to check for in input stream to end program (default = 'exit') -file => name of file for output (type = 1 or 2). (default = /dev/null)
Output the content-type string to start the html page.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-type = content type string.
Output HTML token
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = specify the language for the value of the content attribute. -dir = text direction.
Output HTML head entity
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-profile = specifies the location of one or more meta data profiles. -lang = specify the language. -dir = text direction.
Output an html Meta token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-content = a property's value. -dir = text direction. -http-equiv = may be used in place of the name attribute. -lang = specify the language for the value of the content attribute. -name = a property name. -scheme = a scheme to be used to interpret the property's value.
Output html Title token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = specify the language for the value of the content attribute. -dir = text direction.
Output HTML Address
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML body token
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onload = on load action. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onunload = on unload action. -style = inline style information -title = element title
Output HTML DIV and parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H1
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H2
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H3
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H4
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H5
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML H6
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML SPAN and parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onload = on load action. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onunload = on unload action. -style = inline style information -title = element title
Output BDO element
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = language code -dir = directionality
Outputs the HTML ABBR token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Acronym token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML BlockQuote token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML BR token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -id = id name -style = inline style information -title = element title
Outputs the HTML Cite token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Code token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Del token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = info on reason for change -class = class name -datetime = date and time of change -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML DFN token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML EM token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Ins token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = info on reason for change -class = class name -datetime = date and time of change -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML KBD token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML P token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Pre token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Q token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Samp token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Strong token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Sub token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Sup token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Var token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DD token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DL token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DT token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML LI token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML OL token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML UL token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML CAPTION token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML Col token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment in cells -char = specifies a single character within a text fragment to act as an axis for alignment -charoff = specifies the offset to the first occurrence of the alignment character on each line -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -span = default number of columns in group -valign = vertical alignment in cells -width = default width for enclosed COLs
Output HTML ColGroup token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment in cells -char = a single character within a text fragment to act as an axis for alignment -charoff = offset to the first occurrence of the alignment character on each line. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -span = default number of columns in group -style = inline style information -title = element title -valign = vertical alignment in cells -width = default width for enclosed COLs
Output HTML TABLE token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-border = frame width around table. -cellpadding = space around each cell -cellspacing = space around the contained (outtermost) cells -class = class name -dir = text direction -frame = parts of frame to render. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -padding = padding within cells. -rules = rulings between rows and columns. -spacing = spacing between cells. -style = inline style information -summary = purpose structure (for speech output). -title = element title -width = Table width.
Output HTML TBody token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TD token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -axis = groups of related headers. -class = class name -colspan = number of columns spanned by cell. -dir = text direction -headers = id's for header cells. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rowspan = number of rows spanned by cell. -scope = scope covered by header cells. -style = inline style information -title = element title -valign = vertical alignment.
Output HTML TFoot parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TH token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -axis = groups of related headers. -class = class name -colspan = number of columns spanned by cell. -dir = text direction -headers = id's for header cells. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rowspan = number of rows spanned by cell. -scope = scope covered by header cells. -style = inline style information -title = element title -valign = vertical alignment.
Output HTML THead token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TR token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML A token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character. -charset = Charset. -class = class name -coords = client-side image map. -dir = text direction -href = URI. -hreflang = language code. -id = id name -lang = language information -name = Named link end. -onblur = Script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onfocus = Script. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rel = forward link types. -rev = reverse link types. -shape = client-side image map. -style = inline style information -tabindex = tab order number. -target = Frame name. -title = element title -type = content type.
Output HTML Base token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-href = URI. -target = target frame info.
Output HTML link token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-charset = Charset. -class = class name -dir = text direction -href = URI. -hreflang = language code. -id = id name -lang = language information -media = destination medium -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rel = forward link types. -rev = reverse link types. -style = inline style information -target = Frame name. -type = content type.
Output HTML Area
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character. -alt = short description. -class = class name -coords = comma separated list of lengths. -dir = text direction -href = URI for linked resource. -id = id name -lang = language information -name = control name -nohref = no URI associated with area -onblur = lost focus action. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = on focus action. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -shape = controls interpretation of coords. -style = inline style information -tabindex = position in tabbing order. -target = Frame name. -title = element title
Output HTML img
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -alt = alternative text -border = framing border code -class = class name -dir = text direction -height = height -hspace = the amount of white space to be inserted to the left and right of img -id = id name -ismap = server-side image map -lang = language information -longdesc = long description. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -src = URI -style = inline style information -title = element title -usemap = client-side image map -vspace = the amount of white space to be inserted above/below img -width = width
Output HTML map
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character. -alt = short description. -class = class name -dir = text direction -href = URI for linked resource. -id = id name -lang = language information -name = assigns a name to the image map for usemap. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -shape = controls interpretation of coords. -style = inline style information -tabindex = position in tabbing order. -target = Frame name. -title = element title
Output HTML Object
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-archive = space separated archive list -class = class name -codebase = base URI for class, data, archive -codetype = content type for code -data = reference to object's data. -declare = declare but don't instantiate flag. -dir = text direction -height = override height -id = id name -lang = language information -name = assigns a name to the image map for usemap. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -standby = message to show while loading -style = inline style information -tabindex = position in tabbing order. -title = element title -type = content type for data -usemap = use client-side image map -width = override width
Output HTML Param
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id = document-wide unique id -name = property name -type = content type for value -value = property value -valuetype = How to interpret value
Output html Style.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-dir = text direction. -title = advisory title. -type = the style sheet language of the element's contents. -lang = the base language of an element's text content. -media = intended destination medium for style information.
Output HTML B
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML Big
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML HR token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = LEFT | CENTER | RIGHT. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML I
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML Small
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML TT
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML FRAME token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -frameborder = 0 | 1. -id = id name -longdesc = Long description. -marginheight = margin height. -marginwidth = margin width. -name = Frame name. -noresize = TRUE | FALSE. -scrolling = Scrollbar style. -src = URI. -style = inline style information -target = name of target frame. -title = element title
Output HTML FRAMESET token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -id = id name -rows = Frame rows. -cols = Frame columns. -onload = Script. -onunload = Script. -style = inline style information -title = element title
Output HTML IFRAME token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = vertical or horizontal alignment -class = class name -frameborder = request frame borders -height = frame height. -class = class name -longdesc = Long description. -marginheight = margin height in pixels -marginwidth = margin widths in pixels -name = Frame name. -scrolling = Scrollbar style (YES | NO | AUTO). -src = URI. -style = inline style information -title = element title -width = frame width.
Output HTML NoFrames token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML BUTTON token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -disabled = unavailable in this context -id = id name -lang = language information -name = Field name. -onblur = the element lost the focus -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -tabindex = position in tabbing order -title = element title -type = Input type (SUBMIT | RESET | BUTTON). -value = Field value.
Output HTML FIELDSET token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML form token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accept = list of MIME types for file upload -accept-charset = list of supported charsets -action = URI. -class = class name -dir = text direction -enctype = ContentType. -id = id name -lang = language information -method = GET | POST -name = Form name. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onreset = Script. -onsubmit = Script. -style = inline style information -target = Target name. -title = element title
Output HTML INPUT token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accept = list of MIME types for file upload -accesskey = accessibility key character -align = Alignment code. -alt = short description -checked = TRUE | FALSE -class = class name -dir = text direction -disabled = (disabled) -id = id name -ismap = use server-side image map -lang = language information -maxlength = Maximum text input size in characters. -name = Field name. -onblur = the element lost the focus -onchange = the element value was changed -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = some text was selected -readonly = (readonly) -size = Input field size. -src = URI. -style = inline style information -tabindex = position in tabbing order -title = element title -type = Input type -usemap = use client-side image map -value = Field value.
Output HTML LABEL token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -for = matches field ID value -id = id name -lang = language information -onblur = the element lost the focus -onchange = the element value was changed -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = some text was selected -style = inline style information -title = element title
Output HTML LEGEND token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML OPTGROUP token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -label = Label. -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML OPTION token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -label = Label. -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -selected = TRUE | FALSE. -style = inline style information -title = element title -value = value.
Output HTML SELECT token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -lang = language information -multiple = TRUE | FALSE. -name = Field name. -onblur = script. -onchange = script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = script. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -size = size. -style = inline style information -tabindex = tab number in form. -title = element title
Output HTML TEXTAREA token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -cols = Number of columns. -dir = text direction -disabled = TRUE | FALSE. -id = id name -lang = language information -name = Field name. -onblur = script. -onchange = script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = script. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = script. -readonly = read only -rows = Number of rows. -style = inline style information -tabindex = tab number in form. -title = element title
Output HTML NOSCRIPT token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML SCRIPT token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-charset = char encoding of linked resource -defer = UA may defer execution of script -src = URI for an external script -type = content type of script language
Set/get debug status
Enter: $debug = 1 to set Exit: $debug current setting
The Revision method returns the revision number of htmlout.pm:
$revision = $htmlout->Revision;
Enter: none. Exit: current revision string.
The Version method returns the version number of htmlout.pm:
$version = $htmlout->Version;
Enter: none. Exit: current version string.
The following methods represent the implementation of the public methods above.
Output HTML parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = specify the language for the value of the content attribute. -dir = text direction.
Output head parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-profile = specifies the location of one or more meta data profiles. -lang = specify the language. -dir = text direction.
Output Meta parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-content = named dictionary of meta info. -scheme = specify the language for the value of the content attribute. -http-equiv = text direction. -lang = specify the language. -dir = text direction.
Output html Title parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = specify the language for the value of the content attribute. -dir = text direction.
Output HTML Address parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML body parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onload = on load action. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onunload = on unload action. -style = inline style information -title = element title
Output HTML DIV parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onload = on load action. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onunload = on unload action. -style = inline style information -title = element title
Output HTML Hn parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML SPAN parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onload = on load action. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onunload = on unload action. -style = inline style information -title = element title
Output BDO parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang = language code -dir = directionality
Outputs HTML ABBR parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Acronym parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs HTML BlockQuote parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML BR parameters
Enter: none. Exit: none.
Outputs the HTML Cite parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Code parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Del parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -datetime = date and time of change -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML DFN parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML EM parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Ins parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = info on reason for change -class = class name -datetime = date and time of change -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML KBD parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML P parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Pre parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Q parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cite = URI for source document or msg -class = class name -datetime = date and time of change -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Samp parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Strong parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Sub parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Sup parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Outputs the HTML Var parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DD parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DL parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML DT parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
parse LI parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Parse OL parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
parse UL parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
parse CAPTION parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML Col parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment in cells -char = a single character within a text fragment to act as an axis for alignment -charoff = offset to the first occurrence of the alignment character on each line. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -span = default number of columns in group -style = inline style information -title = element title -valign = vertical alignment in cells -width = default width for enclosed COLs
Output HTML Col parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment in cells -char = a single character within a text fragment to act as an axis for alignment -charoff = offset to the first occurrence of the alignment character on each line. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -span = default number of columns in group -style = inline style information -title = element title -valign = vertical alignment in cells -width = default width for enclosed COLs
Process HTML TABLE parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-border = frame width around table. -cellpadding = space around each cell -cellspacing = space around the contained (outtermost) cells -class = class name -dir = text direction -frame = parts of frame to render. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -padding = padding within cells. -rules = rulings between rows and columns. -spacing = spacing between cells. -style = inline style information -summary = purpose structure (for speech output). -title = element title -width = Table width.
Output HTML TBody parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TD parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -axis = groups of related headers. -class = class name -colspan = number of columns spanned by cell. -dir = text direction -headers = id's for header cells. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rowspan = number of rows spanned by cell. -scope = scope covered by header cells. -style = inline style information -title = element title -valign = vertical alignment.
Output HTML TFoot parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TH parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -axis = groups of related headers. -class = class name -colspan = number of columns spanned by cell. -dir = text direction -headers = id's for header cells. -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rowspan = number of rows spanned by cell. -scope = scope covered by header cells. -style = inline style information -title = element title -valign = vertical alignment.
Output HTML THead parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML TR parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horiz. alignment. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title -valign = vertical alignment. -width = Table width.
Output HTML A parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character. -charset = Charset. -class = class name -coords = client-side image map. -dir = text direction -href = URI. -hreflang = language code. -id = id name -lang = language information -name = Named link end. -onblur = Script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onfocus = Script. -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rel = forward link types. -rev = reverse link types. -shape = client-side image map. -style = inline style information -tabindex = tab order number. -target = Frame name. -title = element title -type = content type.
Output HTML Base parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-href = URI. -target = target frame info.
Output HTML link parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-charset = Charset. -class = class name -dir = text direction -href = URI. -hreflang = language code. -id = id name -lang = language information -media = destination medium -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -rel = forward link types. -rev = reverse link types. -style = inline style information -target = Frame name. -type = content type.
Output HTML Area parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character. -alt = short description. -class = class name -coords = comma separated list of lengths. -dir = text direction -href = URI for linked resource. -id = id name -lang = language information -name = control name -nohref = no URI associated with area -onblur = lost focus action. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = on focus action. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -shape = controls interpretation of coords. -style = inline style information -tabindex = position in tabbing order. -target = Frame name. -title = element title
Output HTML Img parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = horizontal alignment -alt = alternative text -border = framing border code -class = class name -dir = text direction -height = height -hspace = the amount of white space to be inserted to the left and right of img -id = id name -ismap = server-side image map -lang = language information -longdesc = long description. -name = item name (should use -id instead!) -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -src = URI -style = inline style information -title = element title -usemap = client-side image map -vspace = the amount of white space to be inserted above/below img -width = width
Output HTML map parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-alt = short description. -class = class name -dir = text direction -href = URI for linked resource. -id = id name -lang = language information -name = assigns a name to the image map for usemap. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -shape = controls interpretation of coords. -style = inline style information -tabindex = position in tabbing order. -target = Frame name. -title = element title
Output HTML Object parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-archive = space separated archive list -class = class name -codebase = base URI for class, data, archive -codetype = content type for code -data = reference to object's data. -declare = declare but don't instantiate flag. -dir = text direction -height = override height -id = id name -lang = language information -name = assigns a name to the image map for usemap. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -standby = message to show while loading -style = inline style information -tabindex = position in tabbing order. -title = element title -type = content type for data -usemap = use client-side image map -width = override width
Output HTML Param parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id = document-wide unique id -name = property name -type = content type for value -value = property value -valuetype = How to interpret value
Output Style Sheet parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-dir = text direction. -lang = the base language of an element's text content. -media = intended destination medium for style information. -title = advisory title. -type = the style sheet language of the element's contents.
Output HTML B parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML Big parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id => document id -class => class name
Output HTML HR parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = LEFT | CENTER | RIGHT. -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML I parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id => document id -class => class name
Output HTML Small parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id => document id -class => class name
Output HTML TT parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id => document id -class => class name
Output HTML FRAME parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -frameborder = 0 | 1. -id = id name -longdesc = Long description. -marginheight = margin height. -marginwidth = margin width. -name = Frame name. -noresize = TRUE | FALSE. -scrolling = Scrollbar style. -src = URI. -style = inline style information -target = name of target frame. -title = element title
Output HTML FRAMESET parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -id = id name -rows = Frame rows. -cols = Frame columns. -onload = Script. -onunload = Script. -style = inline style information -title = element title
Output HTML IFRAME parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align = vertical or horizontal alignment -class = class name -frameborder = request frame borders -height = frame height. -class = class name -longdesc = Long description. -marginheight = margin height in pixels -marginwidth = margin widths in pixels -name = Frame name. -scrolling = Scrollbar style (YES | NO | AUTO). -src = URI. -style = inline style information -title = element title -width = frame width.
Output HTML NoFrames parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML BUTTON parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -disabled = unavailable in this context -id = id name -lang = language information -name = Field name. -onblur = the element lost the focus -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -tabindex = position in tabbing order -title = element title -type = Input type (SUBMIT | RESET | BUTTON). -value = Field value.
Output HTML FIELDSET parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML form parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accept = list of MIME types for file upload -accept-charset = list of supported charsets -action = URI. -class = class name -dir = text direction -enctype = ContentType. -id = id name -lang = language information -method = GET | POST -name = Form name. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onreset = Script. -onsubmit = Script. -style = inline style information -target = Target name. -title = element title
Output HTML INPUT parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accept = list of MIME types for file upload -accesskey = accessibility key character -align = Alignment code. -alt = short description -checked = TRUE | FALSE -class = class name -dir = text direction -disabled = (disabled) -id = id name -ismap = use server-side image map -lang = language information -maxlength = Maximum text input size in characters. -name = Field name. -onblur = the element lost the focus -onchange = the element value was changed -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = some text was selected -readonly = (readonly) -size = Input field size. -src = URI. -style = inline style information -tabindex = position in tabbing order -title = element title -type = Input type -usemap = use client-side image map -value = Field value.
Output HTML LABEL parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -dir = text direction -for = matches field ID value -id = id name -lang = language information -onblur = the element lost the focus -onchange = the element value was changed -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = the element got the focus -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = some text was selected -style = inline style information -title = element title
Output HTML LEGEND parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-for = matches field ID value -accesskey = accessibility key character -onfocus = the element got the focus -onblur = the element lost the focus
Output HTML OPTGROUP parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -label = Label. -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML OPTION parameter.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -label = Label. -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -selected = TRUE | FALSE. -style = inline style information -title = element title -value = value.
Output HTML SELECT parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -disabled = TRUE | FALSE. -id = id name -lang = language information -multiple = TRUE | FALSE. -name = Field name. -onblur = script. -onchange = script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = script. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -size = size. -style = inline style information -tabindex = tab number in form. -title = element title
Output HTML TEXTAREA parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey = accessibility key character -class = class name -cols = Number of columns. -dir = text direction -disabled = TRUE | FALSE. -id = id name -lang = language information -name = Field name. -onblur = script. -onchange = script. -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onfocus = script. -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -onselect = script. -readonly = read only -rows = Number of rows. -style = inline style information -tabindex = tab number in form. -title = element title
Output HTML NOSCRIPT parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Output HTML SCRIPT parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-charset = char encoding of linked resource -defer = UA may defer execution of script -src = URI for an external script -type = content type of script language
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accesskey => key value
Set alt text.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-alt => string to output if IMG not found.
Parse -archive, -declare and -standby
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-declare = declare but don't instantiate flag. -archive = space separated archive list -standby = message to show while loading
Set area shape and coords.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-shape => language -coords => href language -nohref = no href associated with region
Alignment within an item.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-align => horizontal alignment -valign => vertical alignment -char => a single character within a text fragment to act as an axis for alignment -charoff => offset to the first occurrence of the alignment character on each line
Process -cellspacing and -cellpadding.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-cellspacing = spacing between cells. -cellpadding = padding within cells.
Parse -rowspan and -colspan.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-rowspan = number of rows spanned by cell. -colspan = number of columns spanned by cell.
Process -charset.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-charset = Charset.
Parse -clear parameters
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-clear = Specifies where the next line should appear after the line break
Set image map parameters.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-ismap => set image map -usemap => image to use
Process -codebase and -data
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-data = reference to object's data. -codebase = base URI for class, data, archive -code = applet class file name
Process -compact.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-compact = TRUE | FALSE.
Parse -content, -scheme, -http-equiv
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-content = a property's value. -scheme = a scheme to be used to interpret the property's value. -http-equiv = may be used in place of the name attribute.
parse -type, -codetype, -enctype, -accept.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-accept = list of character encodings for input data -accept-charset = list of character sets -codetype = content type for code -enctype = form processing agent -type = numbering type or content type for data.
Set control attributes.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-readonly => 1 = read only -disabled => item is disabled -defer => defer document content -checked => item is initially checked -tabindex => tab order (index) -selected => initially selected -multiple => multiple versus single item selection -noshade =>
Parse the -datetime token.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-datetime = date and time of change
Set document id and class.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-id = document id (as in <div id='xxx'>) -class = class -classid = identifies an implementation -for =
Set style (inline).
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-style => style name
Set -title and -label.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-title => title string -label => label
Output item and quoted value based upon conditional test.
Enter: $key = value being tested $keytest = value to test against $htmlitem = output item name $value = output item value Exit: 1 if match 0 if no match
NOTE: no output is produced if $value is undefined.
Output item and non-quoted value based upon conditional test.
Enter: $key = value being tested $keytest = value to test against $htmlitem = output item name $value = output item value Exit: 1 if match 0 if no match
NOTE: no output is produced if $value is undefined.
Output effects used by fonts
Enter: %parameters Exit: none
parameters are of the form:
-arg => value
acceptable values are:
-class = class name -dir = text direction -id = id name -lang = language information -onclick = occurs when the pointing device button is clicked -ondblclick = occurs when the pointing device button is double clicked -onkeydown = occurs when a key is pressed down over an element -onkeypress = occurs when a key is pressed and released over an element -onkeyup = occurs when a key is released over an element -onmousedown = occurs when the pointing device button is pressed over an element -onmousemove = occurs when the pointing device is moved while it is over an element -onmouseout = occurs when the pointing device is moved away from an element -onmouseover = occurs when the pointing device is moved onto an element -onmouseup = occurs when the pointing device button is released over an element -style = inline style information -title = element title
Process -frame and -rules.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-frame = parts of frame to render. -rules = rulings between rows and columns.
Set frame decoration values.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are: -frameborder = request frame borders -marginwidth = margin width in pixels -marginheight = margin height in pixels -noresize = framewindow not resizeable if present. -scrolling = scrollbar or none
Parse -headers and -scope.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-headers = id's for header cells. -scope = scope covered by header cells.
Set intrinsic event values.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-onblur => onBlur event -onfocus => onFocus event -onclick => onClick event -ondblclick => onDblClick event -onmousedown => onMouseDown event -onmouseup => onMouseUp event -onmouseover => onMouseOver event -onmousemove => onMouseMove event -onmouseout => onMouseOut event -onkeypress => onKeyPress event -onkeydown => onKeyDown event -onkeyup => onKeyUp event -onsubmit => onSubmit event -onreset => onReset event -onselect => onSelect event -onchange => onChange event -onload => onLoad event -onunload => onUnload event
Set document language.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-lang => language -hlang => href language
Process -rel and -rev.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-rel = forward link types. -rev = reverse link types.
Set document media.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-media => media string
Parse -method.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-method = GET | POST
Process -row, -cols.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-rows = Frame rows. -cols = Frame columns.
Name, Src, LongDesc.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-action = URI of reference -cite = URI for source document or msg -href = URI of reference -longdesc = Long description -name = object name -profile = URI to profile (Meta data) -src = source URI
Process -size, -maxlength, -length.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-size = Input field size. -maxlength = Maximum text input size in characters. -length = length
Process -span.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-span = default number of columns in group
parse -Start.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-start = starting number.
Process -summary.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-summary = purpose structure (for speech output).
Set tab index.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-tabindex => position in tab list
Parse -axis.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-axis = groups of related headers.
Parse -nowrap.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-nowrap = turn off wrapping.
Set target frame name.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-target => set target frame name.
Set text direction.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-dir => direction value
parse -value.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-value = current list item.
Enter: %parameters = parameter hash (see below). Exit: none.
parameters are of the form:
-arg => value
acceptable values are:
-width => width of item -height => height of item -border => 0 = none, otherwise border value -hspace => horizontal spacing -vspace => vertical spacing
Enter: $EntityBuffer = character buffer (possibly) containing data to be converted. Exit: $EntityBuffer = expanded buffer.
Enter: none. Exit: Creates global hash %entity for use by ConvertEntity.
EWS::htmlout is dependent upon the following support modules:
EWS::basicIO is the base class from which EWS::htmlout is derived. It provides a common input/output and simple tracing facility. Refer to the EWS::basicIO pod included with this module.
EWS::htmlout is available at
Jay Wheeler, EarthWalk Software.
EWS::htmlout is copyright © 1998, 2002. EarthWalk Software.
This module is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA