<tml:link>

Description:
Generates a HTML link to the current document.
Link text is the title of the document. The body of the tag is transfered as attribute to the <a> tag.
Attributes:
General WebTML attributes are hidden -> show general attributes
Name Value(s) Version Usage

Details:
The body of the <tml:link> tag is transfered to the generated <a> tag (as attribute) (see example). <tml:link>anything</tml:link>
thus generates:
<a href="the url" anything>the title</a>

The tag <tml:link/> is equal to:
<a href="<tml:url/>"><tml:meta name="title"/></a>
Examples:
    <tml:link/>

      Generates HTML text as follows: <a href="url to document">document title</a>

    <tml:link>class="selected"</tml:link>
      Generates HTML text as follows: <a href="url to document" class="selected">document title</a>