<tml:body>

Description:
This tag can only be used within tml:element and specifies the "content" of the element tag that can even be iterated in - depending on the control in the implementation.
Attributes:
General WebTML attributes are hidden -> show general attributes
Name Value(s) Version Usage

Details:
Examples:
    This example converts XHTML tags <b>, <i> and <u> in corresponding XSLFO tags

    <tml:element name="XSLT">

      <tml:option name="xml">
        <tml:item name="body"/>
      </tml:option>
      <tml:body>
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
          <xsl:template match="b">
            <fo:inline font-weight="bold">
            <xsl:apply-templates/>
            </fo:inline>
          </xsl:template>
          <xsl:template match="i">
            <fo:inline font-style="italic">
            <xsl:apply-templates/>
            </fo:inline>
          </xsl:template>
            <xsl:template match="u">
            <fo:inline text-decoration="underline">
            <xsl:apply-templates/>
            </fo:inline>
        </xsl:template>
        </xsl:stylesheet>
      </tml:body>
    </tml:element>