+ → : Opens a dialog that allows the user to specify the name of the new template to be created. The possible changes to be performed on the document can be previewed prior to altering the document. After pressing OK, the template is created and the selection is replaced by a
xsl:call-template
instruction referring the just created template.
The selection must contain well-formed elements only.
+ → : Creates a separate stylesheet and replaces the selection with a
xsl:include
instruction referring the just created stylesheet.
The selection must contain a well formed top level element.
→ : Extracts the attributes from the selected element and represents each of them with a
xsl:attribute
instruction.
For example from the following element
<person id="Big{test}Boss"/>
you would obtain
<person> <xsl:attribute name="id"> <xsl:text>Big</xsl:text> <xsl:value-of select="test"/> <xsl:text>Boss</xsl:text> </xsl:attribute> </person>