jpluck.xsl
来自「JPluck是一个基于Java的工具集」· XSL 代码 · 共 28 行
XSL
28 行
<?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 + =
减小字号Ctrl + -
显示快捷键?