Generated: October 3, 2001, 11:59:20Copyright © 2000, Kurt NørmarkThe local LAML software home page

Reference Manual of the LAML surface mirror of the XHMTL1.0 (transitional) elements

Kurt Nørmark ©    normark@cs.auc.dk    Department of Computer Science    Aalborg University    Denmark    

Source file: /user/normark/scheme/lib4/xhtml1.0-transitional/surface.scm

This the an accurate mirror of XHMTL1.0 (transitional) on surface form. A surface form has a very flexible syntactic composition. Use the surface forms when you write an HTML document in LAML syntax. Each function in this file mirrors and generates an HTML tag. The general form of a surface mirror function is
   (tag 'a1 "v1" 'a2 "v2" ... 'am "vm" contents-1 contents-2 ... contents-n). 
where, in the most common case, contents-1, contents-2 through contents-n are strings which are string-appended to form the contents of the element. From LAML version 16.2 contents-i (i from 1 to n) can also be proper lists of strings which automatically are string-appended to form a single content string. The attribute names must be symbols, and the attribute values have to be strings.

The expression from above corresponds to the HTML tag

   <tag a1 "v1" a2 "v2" ... am "vm"> contents-1 contents-2 ... contents-n </tag>
In the Scheme form it is even possible to have attributes between and after the textual content. Attributes prefixed with 'css:' are CSS style attributes.

Unless stated otherwise there will be a space character between contents strings, such as in between contents-1 and contents-2. A boolean value false in between the contents strings, such as between contents-1 and contents-2, suppresses white space in between them. This is in particular useful before punctuation characters. We recommend that you bind #f to a notationally convenient variable such as '_'.

If the boolean variable check-html-attributes? is true the functions check the attributes of the tag against the attribute definitions in the document type definition.

The HTML mirror functions emit non-pretty printed HTML code. If you want pretty printed HTML you can use the HTML pretty printer, which is part of the LAML software package. See also the html-pp procedure. Notice that pretty printing may be quite expensive compared with the generation as such.

This library requries the general library and the accompanying basic form library.

Notice that the function map and the HTML element map give a name collision.We prefix the HTML element with 'html:' when applied as a HTML mirror function in LAML.

This library provides links to the W3 document which defines the HTML tags. The underlying WWW pages are supplied as part of the LAML software bundle.

See also the basic form library of the mirror and the HTML convenience library.

Table of Contents:
1. Other useful functions.2. The HTML surface mirror functions

Alphabetic index:
a(a . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) A double tag element (no explanation available).
abbr(abbr . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) ABBR double tag element (no explanation available).
acronym(acronym . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) ACRONYM double tag element (no explanation available).
address(address . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) ADDRESS double tag element (no explanation available).
applet(applet . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) APPLET double tag element (no explanation available).
area(area . attributes)The LAML mirror of the XHMTL1.0 (transitional) AREA single tag element (no explanation available).
b(b . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) B double tag element (no explanation available).
base(base . attributes)The LAML mirror of the XHMTL1.0 (transitional) BASE single tag element (no explanation available).
basefont(basefont . attributes)The LAML mirror of the XHMTL1.0 (transitional) BASEFONT single tag element (no explanation available).
bdo(bdo . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) BDO double tag element (no explanation available).
big(big . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) BIG double tag element (no explanation available).
blockquote(blockquote . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) BLOCKQUOTE double tag element (no explanation available).
body(body . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) BODY double tag element (no explanation available).
br(br . attributes)The LAML mirror of the XHMTL1.0 (transitional) BR single tag element (no explanation available).
button(button . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) BUTTON double tag element (no explanation available).
caption(caption . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) CAPTION double tag element (no explanation available).
center(center . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) CENTER double tag element (no explanation available).
cite(cite . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) CITE double tag element (no explanation available).
code(code . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) CODE double tag element (no explanation available).
col(col . attributes)The LAML mirror of the XHMTL1.0 (transitional) COL single tag element (no explanation available).
colgroup(colgroup . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) COLGROUP double tag element (no explanation available).
concatenate(concatenate . parameters)A non-HTML tag which concatenates parameters of a form to a single string.
dd(dd . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DD double tag element (no explanation available).
del(del . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DEL double tag element (no explanation available).
dfn(dfn . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DFN double tag element (no explanation available).
dir(dir . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DIR double tag element (no explanation available).
div(div . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DIV double tag element (no explanation available).
dl(dl . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DL double tag element (no explanation available).
dt(dt . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) DT double tag element (no explanation available).
em(em . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) EM double tag element (no explanation available).
fieldset(fieldset . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) FIELDSET double tag element (no explanation available).
font(font . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) FONT double tag element (no explanation available).
form(form . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) FORM double tag element (no explanation available).
free-html-element(free-html-element tag-name . parameters)Generate a HTML tag application for tag-name with attributes and contents given by parameters.
free-html-element-1(free-html-element-1 tag-name parameters)Generate a HTML tag application for tag-name with attributes and contents given by parameters.
h1(h1 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H1 double tag element (no explanation available).
h2(h2 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H2 double tag element (no explanation available).
h3(h3 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H3 double tag element (no explanation available).
h4(h4 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H4 double tag element (no explanation available).
h5(h5 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H5 double tag element (no explanation available).
h6(h6 . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) H6 double tag element (no explanation available).
head(head . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) HEAD double tag element (no explanation available).
hr(hr . attributes)The LAML mirror of the XHMTL1.0 (transitional) HR single tag element (no explanation available).
html(html . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) HTML double tag element (no explanation available).
i(i . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) I double tag element (no explanation available).
iframe(iframe . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) IFRAME double tag element (no explanation available).
img(img . attributes)The LAML mirror of the XHMTL1.0 (transitional) IMG single tag element (no explanation available).
input(input . attributes)The LAML mirror of the XHMTL1.0 (transitional) INPUT single tag element (no explanation available).
ins(ins . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) INS double tag element (no explanation available).
isindex(isindex . attributes)The LAML mirror of the XHMTL1.0 (transitional) ISINDEX single tag element (no explanation available).
kbd(kbd . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) KBD double tag element (no explanation available).
label(label . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) LABEL double tag element (no explanation available).
legend(legend . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) LEGEND double tag element (no explanation available).
li(li . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) LI double tag element (no explanation available).
link(link . attributes)The LAML mirror of the XHMTL1.0 (transitional) LINK single tag element (no explanation available).
menu(menu . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) MENU double tag element (no explanation available).
meta(meta . attributes)The LAML mirror of the XHMTL1.0 (transitional) META single tag element (no explanation available).
modify-element(modify-element element . attributes-and-contents)Define partial attributes and element contents of element and return a new element function with the attributes and contents partially fixed.
noframes(noframes . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) NOFRAMES double tag element (no explanation available).
noscript(noscript . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) NOSCRIPT double tag element (no explanation available).
object(object . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) OBJECT double tag element (no explanation available).
ol(ol . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) OL double tag element (no explanation available).
optgroup(optgroup . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) OPTGROUP double tag element (no explanation available).
option(option . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) OPTION double tag element (no explanation available).
p(p . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) P double tag element (no explanation available).
param(param . attributes)The LAML mirror of the XHMTL1.0 (transitional) PARAM single tag element (no explanation available).
pre(pre . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) PRE double tag element (no explanation available).
q(q . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) Q double tag element (no explanation available).
s(s . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) S double tag element (no explanation available).
samp(samp . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SAMP double tag element (no explanation available).
script(script . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SCRIPT double tag element (no explanation available).
select(select . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SELECT double tag element (no explanation available).
small(small . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SMALL double tag element (no explanation available).
span(span . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SPAN double tag element (no explanation available).
strike(strike . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) STRIKE double tag element (no explanation available).
strong(strong . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) STRONG double tag element (no explanation available).
style(style . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) STYLE double tag element (no explanation available).
sub(sub . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SUB double tag element (no explanation available).
sup(sup . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) SUP double tag element (no explanation available).
table(table . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TABLE double tag element (no explanation available).
tbody(tbody . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TBODY double tag element (no explanation available).
td(td . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TD double tag element (no explanation available).
textarea(textarea . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TEXTAREA double tag element (no explanation available).
tfoot(tfoot . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TFOOT double tag element (no explanation available).
th(th . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TH double tag element (no explanation available).
thead(thead . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) THEAD double tag element (no explanation available).
title(title . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TITLE double tag element (no explanation available).
tr(tr . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TR double tag element (no explanation available).
tt(tt . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) TT double tag element (no explanation available).
u(u . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) U double tag element (no explanation available).
ul(ul . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) UL double tag element (no explanation available).
var(var . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) VAR double tag element (no explanation available).
xhtml:map(xhtml:map . attributes-and-contents)The LAML mirror of the XHMTL1.0 (transitional) XHTML:MAP double tag element (no explanation available).

 

1.   OTHER USEFUL FUNCTIONS.
In this section there are non-mirror functions which are useful in surface HTML forms.


concatenate



Form
(concatenate . parameters)

Description
A non-HTML tag which concatenates parameters of a form to a single string. There may be boolean values among the parameters. A boolean false after a textual contents string suppresses white space after the contents string. Warn if there are attributes among the parameters. Possible attributes are just skipped.


free-html-element



Form
(free-html-element tag-name . parameters)

Description
Generate a HTML tag application for tag-name with attributes and contents given by parameters. The parameters obeys the syntax of a the LAML surface forms. This function is useful for generation of non-standard tag applications.


free-html-element-1



Form
(free-html-element-1 tag-name parameters)

Description
Generate a HTML tag application for tag-name with attributes and contents given by parameters. This function corresponds exactly to free-html-element; however, this function takes exactly two parameters whereas free-html-elements takes one or more parameters.


modify-element



Form
(modify-element element . attributes-and-contents)

Description
Define partial attributes and element contents of element and return a new element function with the attributes and contents partially fixed. attributes-and-contents is of the same form as the parameters to a LAML surface mirror functions. In fact, attributes-and-contents are just appended to the actual parameters to the modified.

Returns
an attribute-modified mirror function

Example
(define a-main (modify-element a 'target "main"))


 

2.   THE HTML SURFACE MIRROR FUNCTIONS



td



Form
(td . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:td

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, abbr, axis, headers, scope, rowspan, colspan, align, char, charoff, valign, nowrap, bgcolor, width, height.



th



Form
(th . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TH double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:th

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, abbr, axis, headers, scope, rowspan, colspan, align, char, charoff, valign, nowrap, bgcolor, width, height.



tr



Form
(tr . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:tr

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign, bgcolor.



col



Form
(col . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) COL single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:col

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, span, width, align, char, charoff, valign.



colgroup



Form
(colgroup . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) COLGROUP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:colgroup

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, span, width, align, char, charoff, valign.



tbody



Form
(tbody . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TBODY double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:tbody

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



tfoot



Form
(tfoot . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TFOOT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:tfoot

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



thead



Form
(thead . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) THEAD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:thead

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, char, charoff, valign.



caption



Form
(caption . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) CAPTION double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:caption

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



table



Form
(table . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TABLE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:table

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, summary, width, border, frame, rules, cellspacing, cellpadding, align, bgcolor.



isindex



Form
(isindex . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) ISINDEX single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:isindex

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, prompt.



button



Form
(button . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) BUTTON double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:button

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, value, type, disabled, tabindex, accesskey, onfocus, onblur.



legend



Form
(legend . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) LEGEND double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:legend

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, accesskey, align.



fieldset



Form
(fieldset . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) FIELDSET double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:fieldset

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



textarea



Form
(textarea . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TEXTAREA double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:textarea

Note
Required attributes: rows, cols.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, disabled, readonly, tabindex, accesskey, onfocus, onblur, onselect, onchange.



option



Form
(option . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) OPTION double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:option

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, selected, disabled, label, value.



optgroup



Form
(optgroup . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) OPTGROUP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:optgroup

Note
Required attributes: label.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, disabled.



select



Form
(select . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SELECT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:select

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, size, multiple, disabled, tabindex, onfocus, onblur, onchange.



input



Form
(input . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) INPUT single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:input

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, name, value, checked, disabled, readonly, size, maxlength, src, alt, usemap, tabindex, accesskey, onfocus, onblur, onselect, onchange, accept, align.



label



Form
(label . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) LABEL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:label

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, for, accesskey, onfocus, onblur.



form



Form
(form . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) FORM double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:form

Note
Required attributes: action.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, method, name, enctype, onsubmit, onreset, accept, accept-charset, target.



area



Form
(area . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) AREA single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:area

Note
Required attributes: alt.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, shape, coords, href, nohref, tabindex, accesskey, onfocus, onblur, target.



xhtml:map



Form
(xhtml:map . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) XHTML:MAP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:map

Note
Required attributes: id.

Optional attributes: lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, class, style, title, name.



img



Form
(img . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) IMG single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:img

Note
Required attributes: src, alt.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, name, longdesc, height, width, usemap, ismap, align, border, hspace, vspace.



applet



Form
(applet . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) APPLET double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:applet

Note
Required attributes: width, height.

Optional attributes: id, class, style, title, codebase, archive, code, object, alt, name, align, hspace, vspace.



param



Form
(param . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) PARAM single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:param

Note
Required attributes: name.

Optional attributes: id, value, valuetype, type.



object



Form
(object . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) OBJECT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:object

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, declare, classid, codebase, data, type, codetype, archive, standby, height, width, usemap, name, tabindex, align, border, hspace, vspace.



font



Form
(font . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) FONT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:font

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, size, color, face.



basefont



Form
(basefont . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) BASEFONT single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:basefont

Note
Required attributes: size.

Optional attributes: id, color, face.



strike



Form
(strike . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) STRIKE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:strike

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



s



Form
(s . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) S double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:s

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



u



Form
(u . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) U double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:u

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



small



Form
(small . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SMALL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:small

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



big



Form
(big . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) BIG double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:big

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



b



Form
(b . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) B double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:b

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



i



Form
(i . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) I double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:i

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



tt



Form
(tt . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:tt

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



sup



Form
(sup . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SUP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:sup

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



sub



Form
(sub . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SUB double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:sub

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



q



Form
(q . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) Q double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:q

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite.



acronym



Form
(acronym . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) ACRONYM double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:acronym

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



abbr



Form
(abbr . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) ABBR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:abbr

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



cite



Form
(cite . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) CITE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:cite

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



var



Form
(var . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) VAR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:var

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



kbd



Form
(kbd . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) KBD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:kbd

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



samp



Form
(samp . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SAMP double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:samp

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



code



Form
(code . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) CODE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:code

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dfn



Form
(dfn . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DFN double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:dfn

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



strong



Form
(strong . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) STRONG double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:strong

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



em



Form
(em . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) EM double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:em

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



br



Form
(br . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) BR single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:br

Note
No required attributes.

Optional attributes: id, class, style, title, clear.



bdo



Form
(bdo . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) BDO double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:bdo

Note
Required attributes: dir.

Optional attributes: id, class, style, title, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, lang, xml:lang.



span



Form
(span . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SPAN double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:span

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



a



Form
(a . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) A double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:a

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, charset, type, name, href, hreflang, rel, rev, accesskey, shape, coords, tabindex, onfocus, onblur, target.



del



Form
(del . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DEL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:del

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite, datetime.



ins



Form
(ins . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) INS double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:ins

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite, datetime.



center



Form
(center . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) CENTER double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:center

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



blockquote



Form
(blockquote . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) BLOCKQUOTE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:blockquote

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, cite.



pre



Form
(pre . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) PRE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:pre

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, width, xml:space.



hr



Form
(hr . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) HR single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:hr

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align, noshade, size, width.



address



Form
(address . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) ADDRESS double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:address

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dd



Form
(dd . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:dd

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dt



Form
(dt . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:dt

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



dl



Form
(dl . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:dl

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



li



Form
(li . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) LI double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:li

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, value.



dir



Form
(dir . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DIR double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:dir

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



menu



Form
(menu . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) MENU double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:menu

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, compact.



ol



Form
(ol . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) OL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:ol

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, compact, start.



ul



Form
(ul . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) UL double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:ul

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, type, compact.



h6



Form
(h6 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H6 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h6

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h5



Form
(h5 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H5 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h5

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h4



Form
(h4 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H4 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h4

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h3



Form
(h3 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H3 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h3

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h2



Form
(h2 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H2 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h2

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



h1



Form
(h1 . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) H1 double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:h1

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



p



Form
(p . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) P double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:p

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



div



Form
(div . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) DIV double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:div

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, align.



body



Form
(body . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) BODY double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:body

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, onload, onunload, background, bgcolor, text, link, vlink, alink.



noframes



Form
(noframes . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) NOFRAMES double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:noframes

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



iframe



Form
(iframe . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) IFRAME double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:iframe

Note
No required attributes.

Optional attributes: id, class, style, title, longdesc, name, src, frameborder, marginwidth, marginheight, scrolling, align, height, width.



noscript



Form
(noscript . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) NOSCRIPT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:noscript

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.



script



Form
(script . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) SCRIPT double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:script

Note
Required attributes: type.

Optional attributes: charset, language, src, defer, xml:space.



style



Form
(style . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) STYLE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:style

Note
Required attributes: type.

Optional attributes: lang, xml:lang, dir, media, title, xml:space.



link



Form
(link . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) LINK single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:link

Note
No required attributes.

Optional attributes: id, class, style, title, lang, xml:lang, dir, onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, charset, href, hreflang, type, rel, rev, media, target.



meta



Form
(meta . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) META single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:meta

Note
Required attributes: content.

Optional attributes: lang, xml:lang, dir, http-equiv, name, scheme.



base



Form
(base . attributes)

Description
The LAML mirror of the XHMTL1.0 (transitional) BASE single tag element (no explanation available).

Parameters
attributesHTML and CSS attribute value pairs. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:base

Note
No required attributes.

Optional attributes: href, target.



title



Form
(title . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) TITLE double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:title

Note
No required attributes.

Optional attributes: lang, xml:lang, dir.



head



Form
(head . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) HEAD double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:head

Note
No required attributes.

Optional attributes: lang, xml:lang, dir, profile.



html



Form
(html . attributes-and-contents)

Description
The LAML mirror of the XHMTL1.0 (transitional) HTML double tag element (no explanation available).

Parameters
attributes-and-contentsHTML and CSS attribute value pairs together with a list of textual contents. Attribute names must be symbols; CSS attributes: 'css:name. Attribute values must be strings.

See also
general calling infoManual abstract
similar basic formxhtml1:html

Note
No required attributes.

Optional attributes: lang, xml:lang, dir, xmlns.



Generated: October 3, 2001, 11:59:21
This documentation has been extracted automatically from the Scheme source file by means of the Schemedoc tool