📄 xtp-strict.xtp
字号:
<title section="Resin : JSP Tutorial : XTP :">Strict XSL</title><p/>Resin, of course, also supports strict XSL syntax. Strict XSL ismore verbose and less readable, but has the advantage of being more standard.<p/>The following stylesheet is exactly equivalent to the previous one butuses strict XSL syntax.<example title="stylesheet.xsl"><xsl:stylesheet><!-- make sure '<' is not printed as '&lt;' --><xsl:output disable-output-escaping='true'/><!-- copy input to output --><xsl:template match='*|@*'><xsl:copy><xsl:apply-templates select='node()|@*'/></xsl:copy></xsl:template><!-- rewrite <a href> --><xsl:template match='a[@href]'><a href='<%= response.encodeURL("{@href}") %>'> <xsl:apply-templates select='node()|@*[name(.)!="href"]'/></a></xsl:template></xsl:stylesheet></example>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -