XSLで利用できる略記の一覧
XSLで利用できる略記の一覧です。略記 | 展開される内容 |
---|---|
tm | <xsl:template match="" mode=""></xsl:template> |
tmatch | <xsl:template match="" mode=""></xsl:template> |
tn | <xsl:template name=""></xsl:template> |
tname | <xsl:template name=""></xsl:template> |
xsl:when | <xsl:when test=""></xsl:when> |
wh | <xsl:when test=""></xsl:when> |
var | <xsl:variable name=""></xsl:variable> |
vare | <xsl:variable name="" select="" /> |
if | <xsl:if test=""></xsl:if> |
call | <xsl:call-template name="" /> |
attr | <xsl:attribute name=""></xsl:attribute> |
wp | <xsl:with-param name="" select="" /> |
par | <xsl:param name="" select="" /> |
val | <xsl:value-of select="" /> |
co | <xsl:copy-of select="" /> |
each | <xsl:for-each select=""></xsl:for-each> |
ap | <xsl:apply-templates select="" mode="" /> |
choose+ | <xsl:choose> <xsl:when test=""></xsl:when> <xsl:otherwise></xsl:otherwise> </xsl:choose> |