📄 bottom.xsl
字号:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" omit-xml-declaration="yes"/>
<xsl:template match="/rss/channel">
<xsl:param name="ID" />
<html>
<body>
<!--
This is an XSLT template file. Fill in this area with the
XSL elements which will transform your XML to XHTML.
-->
<b>
<xsl:value-of select="item[$ID]/title" disable-output-escaping="yes" />
</b>
<p>
<xsl:value-of select="item[$ID]/description" disable-output-escaping="yes"/>
</p>
<a>
<xsl:attribute name="href">
<xsl:value-of select="item[$ID]/link"/>
</xsl:attribute>
<xsl:attribute name="target">
_blank
</xsl:attribute>
Read More......
</a>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -