📄 article.xsl
字号:
<?xml version="1.0" encoding="UTF-8"?>
<?jpluck name="Common Dreams article"
description="Extracts the article text."
uri-pattern="http://.*commondreams.org/.*\.htm.*"
?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Common Dreams</title>
<xsl:copy-of select="//head/title"/>
</head>
<body>
<xsl:copy-of select="//tr[position()=5]/td[position()=2]"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -