show/hide this revision's text 2 added 149 characters in body
<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.

Read about here.

SORRY! I forgot it myself in first 'version' of the answer.

show/hide this revision's text 1
<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_NAME">
  <xsl:attribute name="$ATTRIBUTE_NAME">
    <xsl:value-of select="$ATTRIBUTE_VALUE"/>
  </xsl:attribute>
  <content>
    <goes>
      <here/>
    </goes>
  </content>
</xsl:element>