📄 imagesonly.xsl
字号:
<?xml version="1.0" encoding="UTF-8"?>
<?jpluck name="Extract images" description="Extracts only the images from a page."?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:html="http://www.w3.org/1999/xhtml">
<xsl:import href="jpluck.xsl"/>
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates select="//html:img|img"/>
</body>
</html>
</xsl:template>
<xsl:template match="img|html:img">
<p>
<xsl:copy-of select="."/>
</p>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -