📄 jpluck.xsl
字号:
<?xml version="1.0" encoding="UTF-8"?>
<?jpluck name="JPluck base stylesheet"
description="This stylesheet can serve as a base for deriving your own JPluck stylesheets. It copies all elements and attributes from the input tree to the output tree, effectively performing an identity transformation. It also declares the standard parameters passed by JPluck to stylesheets."
hidden="yes"
?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- The URI of the XML/HTML page being transformed. -->
<xsl:param name="uri"/>
<!-- The document.XXX parameters correspond to the Document properties defined by the user and stored in the JXL. -->
<xsl:param name="document.name"/>
<xsl:param name="document.startPage"/>
<xsl:param name="document.linkDepth"/>
<!-- The following 5 parameters are booleans. -->
<xsl:param name="document.stayOnHost"/>
<xsl:param name="document.stayBelowPath"/>
<xsl:param name="document.includeImages"/>
<xsl:param name="document.includeImageAltText"/>
<xsl:param name="document.includeFullSizeImages"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="text()|@*|*">
<xsl:copy>
<xsl:apply-templates select="*|@*|text()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -