<xsl:element name="newElement">
<xsl:attribute name="wow">
you can even add attributes
</xsl:attribute>
<content>
<goes>
<here/>
</goes>
</content>
</xsl:element>
advanced:
<xsl:element name="$ELEMENT_NAMEname="{$ELEMENT_NAME}">
<xsl:attribute name="$ATTRIBUTE_NAMEname="{$ATTRIBUTE_NAME}">
<xsl:value-of select="$ATTRIBUTE_VALUE"/>
</xsl:attribute>
<content>
<goes>
<here/>
</goes>
</content>
</xsl:element>
edit:
You need { and } for the "name" attributes,
but not for the "select" attribute.
SORRY! I forgot it myself in first 'version' of the answer.
